I have this code:
public static void Main(string[] args) { if (string.IsNullOrEmpty(args[0])) // Warning : Index was out of the bounds of the a
if(args.Length==0) should work, args[0] requires at least one argument to not crash.
if(args.Length==0)
args[0]