dumpToString() 공개 메소드

public dumpToString ( ) : string
리턴 string
예제 #1
0
        private void change_Input(rv.InputCommand.InputType x, int i)
        {
            InputCommand ic2 = new InputCommand(x, i);

            if (c.sendCommand(ic2) == Command.Response.SUCCESS)
                Console.WriteLine(ic2.dumpToString());
            else
                Console.WriteLine("Communication Error");
        }