Can partial classes be used for web-services or there is some other way to implement it ?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Partial classes are a compiler feature shared by all of C#, so yes, you can use them for web services.
In fact, it is a feature that is has completely nothing to do with web-services. It simply allows you to split a class over more than one file.
If you want to do so with your web service, you can.