I have a class declaration
public class Customer
{
  public string id {  get;set;}
  public Address CustomerAddress   { get;set;}
  ...
  ...
  ...
  public string EmailAddress {get;set;}
  ..
  ..
  ..
}
during debugging i want to hide some properties from being displayed like (id,CustomerAddress),what is the way to achieve it?