I know how to use the csc program for VS to create a dll file of a class that has no user interface:
csc /target:library /out:"D:\My Documents\C Sharp projects\ProgramAW.dll" "D:\My Documents\C Sharp projects\Andrew.cs"
But how would I create a dll if it needs to hold all the information about the Form so I can just put using MyDll at the top and call a method in the dll to show and run the form?
csc /target:library /out:"D:\My Documents\C Sharp projects\ProgramAW.dll" "D:\My Documents\C Sharp projects\Andrew.cs"
But how would I create a dll if it needs to hold all the information about the Form so I can just put using MyDll at the top and call a method in the dll to show and run the form?
Last edited: