manually running class library in cmd
C#
2
Posts
2
Posters
0
Views
1
Watching
-
hi like console applications is run in the cmd prompt how i can run the classlibrary in the cmd prompt .Does any one know the command for it . sasi
You can't, a class library is just that, a library, which contains lots of methods/classes but no interaction. Either build yourself a simple console application to access and test the classes. Or use something like NUnit to test your library.