12 lines
146 B
C#
12 lines
146 B
C#
|
|
using System;
|
||
|
|
namespace ProgramName
|
||
|
|
{
|
||
|
|
class Program
|
||
|
|
{
|
||
|
|
static void Main(string[] args)
|
||
|
|
{
|
||
|
|
Console.Write(Environment.CommandLine);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|