Kirim ke Main Args Dotnet Debug

static void Main(string[] args)
        {
#if DEBUG
            args = new[] { "A" };
#endif

            Console.WriteLine(args[0]);
        }
Upvote answer :-)