Skip to content

Instantly share code, notes, and snippets.

@satish860
Created October 13, 2012 06:08
Show Gist options
  • Save satish860/3883452 to your computer and use it in GitHub Desktop.
Save satish860/3883452 to your computer and use it in GitHub Desktop.
Sample class
public class Customer
{
private string name;
private string email;
public Customer(string name,string email)
{
this.name=name;
this.email=email;
}
public void sendMail()
{
//send a mail using the this.email;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment