I have a class declaration
public class Customer
{
public string id { get;set;}
public Address CustomerAddress { get;set;}
...
...
...
public string EmailAddress {get;set;}
..
..
..
}
during debuggingI want to hide some properties from displaying (id, CustomerAddress), what is the way to achieve it?
user192332
source
share