how to create a DLL file

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I created a c# windows application and i want to use in it classes. I think i need to convert the .cs files into dll , how can i do it?
 
You can choose to create a "Class Library" project when first creating the
solution. This will compile to a dll assembly. Or you can change an existing
project's "Output Type" to "Class Library" in the project properties.

--
Tim Wilson
..Net Compact Framework MVP
{cf147fdf-893d-4a88-b258-22f68a3dbc6a}
shirly bar said:
I created a c# windows application and i want to use in it classes. I
think i need to convert the .cs files into dll , how can i do it?
 
Back
Top