Purpose of bin folder

  • Thread starter Thread starter rajesh
  • Start date Start date
R

rajesh

Hi,
Just wanted to know what is the purpose and importance of bin folder
in .NET framework? Why should an application consist of the bin folder
and what would happen if we donot have such a folder structure in a
..NET application?
Regards,
Rajesh
 
what is the purpose and importance of bin folder in .NET framework?

The bin folder contains your C# or VB.NET code. The code is compiled to
Intermediate Language and stored in DLL's.

You can easily find out what happens when you remove it. :)

Greetings,
Wessel
 
Back
Top