NTRDebuggerTool.Objects.GateSharkCode.ParseCode C# (CSharp) Method

ParseCode() public method

public ParseCode ( string code ) : void
code string
return void
        public void ParseCode(string code)
        {
            operation = new GateSharkCodeOperation();
            operation.operationType = OperationType.TopLevelOperation;
            operation.ParseCode(code, this);
        }