Advertisement
Guest User

Untitled

a guest
Sep 20th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. // when we need to extend this class without modifying the class then we need to add an additional partial class with
  2. // 1. Same Namespace
  3. // 2. Same Name
  4. // 3. with different filename in the project
  5.  
  6. namespace RajivDemo
  7. {
  8. public partial class Customer
  9. {
  10. [DataMember]
  11. public string CustomerCode { get; set; }
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement