Hi,
I have WebService which is referenced in C# ClassLibrary project.
In WebService project I have a class named User, which has two constructors - one without parameters and one whith parameters.
When I try to create instance of User class from WS in ClassLibrary, I can use only constructor with parameters.
My question is, how can I use in constructor with parameters like User u = new User("some@email.com", ...);.
Any idea? Thansk
View Complete Post