Ok this is embarrassing
I cant get the hello world app to work.
Heres my code
ok its not really the hello world app its the second step. anyway this is the error i get. indexOutOfRangeException was unhandled Index was outside the bounds of the array.
Heres my code
Code:
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine(args[0]);
Console.ReadKey();
}
}
}