We have classpath in java? What it is?
Do we have classpath in C# also? If not what is in C# equivalent to classpath?
We have classpath in java? What it is?
Do we have classpath in C# also? If not what is in C# equivalent to classpath?
From PATH and CLASSPATH
PATH
The PATH environment variable is a series of directories separated by semicolons (;). Microsoft Windows looks for programs in the PATH directories in order, from left to right. You should have only one bin directory for the JDK in the path at a time (those following the first are ignored), so if one is already present, you can update that particular entry.
The following is an example of a PATH environment variable:
C:\Java\jdk1.7.0\bin;C:\Windows\System32\;C:\Windows\;C:\Windows\System32\Wbem
CLASSPATH
The CLASSPATH variable is one way to tell applications, including the JDK tools, where to look for user classes. (Classes that are part of the JRE, JDK platform, and extensions should be defined through other means, such as the bootstrap class path or the extensions directory.)
So CLASSPATH is only specific to java