mirror of
https://github.com/reactos/reactosdbg.git
synced 2024-11-23 11:49:53 +00:00
6030ecd415
locals and stack trace at the place where reactos is stopped. svn path=/trunk/tools/reactosdbg/; revision=759
20 lines
334 B
C#
20 lines
334 B
C#
using System;
|
|
using System.IO;
|
|
using System.Net;
|
|
using System.Net.Sockets;
|
|
using System.Globalization;
|
|
|
|
namespace Gdb
|
|
{
|
|
public class GdbSocketTest
|
|
{
|
|
public static void Main(string []args)
|
|
{
|
|
foreach (string arg in args)
|
|
{
|
|
Console.WriteLine(long.Parse(arg, NumberStyles.HexNumber));
|
|
}
|
|
}
|
|
}
|
|
}
|