Command Window

The commad prompt is the command window right? Well how come when i add the linecsc /t:module StringLib.cs it says it invalid...I am trying to issue a command to compile it as a module that is not apart of the assembly?any help out there

I got it to compile usingcmdthen i enter just the lettert but then i want to open the MSIL disassembler with this lineilasm StringLib.netModulebut it says that its invalid........Any help

[526 byte] By [Dpowers] at [2007-12-16]
# 1

Hello,

Actually you have to try this commands in the command prompt. The best way to perform this commands is through the Visual Studio Command Prompt.

Select the Windows menu Start-> Programs -> Microsoft Visual Studio .Net -> Visual Studio .Net Tools -> Visual Studio .Net Command Prompt. It will open a command prompt with the environment already set, so you can go to your application directory and try to compile your program.

FBCJunior at 2007-9-9 > top of Msdn Tech,Visual C#,Visual C# General...
# 2
when i put in my command line it says no inputs specified?
Dpowers at 2007-9-9 > top of Msdn Tech,Visual C#,Visual C# General...
# 3
DPowers,

In the command windows, you must change the current directory to your application directory, that one where your .cs file is saved. For example, suppose that your application directory is c:\MyApps\SomeExercise. So, you must type:

cd \MyApps\SomeExercise

Now you can type the compiler command.

FBCJunior at 2007-9-9 > top of Msdn Tech,Visual C#,Visual C# General...