Visual Studio Command Prompt - recognition of lower and upper case

G

Guest

In the .NET Framework 2.0 SDK I create a file TestApp.cs - mixed case.

Does anyone know why, when I compile entering a csc command from the Visual
Studio 2005 Command Prompt, I need to enter the file as "testapp.cs" lower
case?
 
B

Bill B

Can you post a code sample and the error message you're getting? I'm
able to compile the snippet below using the command "csc TestApp.cs"...

using System;

static class TestApp
{
[STAThread]
static void Main()
{
int res = Add(1, 3);
}

static public int Add(int left, int right)
{
return left + right;
}
}

Bill
 
B

Bill Block

Can you post a code sample and the error message you're getting? I'm
able to compile the snippet below using the command "csc TestApp.cs"...

using System;

static class TestApp
{
[STAThread]
static void Main()
{
int res = Add(1, 3);
}

static public int Add(int left, int right)
{
return left + right;
}

}

Bill
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top