Automation.CodeGenTests.CompareInstructions C# (CSharp) Method

CompareInstructions() private method

private CompareInstructions ( AbstractInstruction i1, AbstractInstruction i2 ) : bool
i1 Axiom.Runtime.AbstractInstruction
i2 Axiom.Runtime.AbstractInstruction
return bool
        private bool CompareInstructions(AbstractInstruction i1, AbstractInstruction i2)
        {
            return i1.ToString() == i2.ToString();
        }