Пример #1
0
        public static ExecuteResponse Read( TextReader reader )
        {
            var response = new ExecuteResponse();

            response.ExitCode = Int32.Parse(reader.ReadLine());

            return response;
        }