Skip to content

Instantly share code, notes, and snippets.

@tnngo2
Created April 12, 2012 11:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tnngo2/2366688 to your computer and use it in GitHub Desktop.
Save tnngo2/2366688 to your computer and use it in GitHub Desktop.
sealed class Product
{
public int Quality;
public int Cost;
}
class Goods
{
static void Main(string[] args)
{
Product objProduct = new Product();
objProduct.Quality = 50;
objProduct.Cost = 75;
Console.WriteLine("Quality of the Product: " + objProduct.Quality);
Console.WriteLine("Cost of the product: " + objProduct.Cost);
}
}
class Pen : Product
{
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment