mirror of
https://github.com/reactos/reactosdbg.git
synced 2024-11-23 03:39:43 +00:00
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));
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|