Partial class
why partial methods have't Access Modifiers
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
VulpesPosted Mar 7, 2014, 6:52 AM
It would be problematic for them to be called from other classes because, if the partial method is not implemented, it will be removed altogether by the compiler and this could have repercussions on other code. Consequently, access modifiers are unnecessary and are not allowed.
Lindokuhle DlaminiPosted Mar 7, 2014, 6:37 AM