Files
bruteratel/BruteRatel-v2.1.2/server_confs/patch_envexit/sampleSharp.cs
T

20 lines
385 B
C#
Raw Normal View History

2026-08-27 11:22:43 -06:00
using System;
using System.Collections.Generic;
using System.Reflection;
namespace EnvExit
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Arg count: "+args.Length);
Console.WriteLine("Args:");
foreach (Object obj in args)
{
Console.WriteLine(obj);
}
}
}
}