5.1.2 Using Object and Colleciton Initializers: create object and assign value with initializer

This commit is contained in:
Jason Zhu 2021-07-05 16:21:55 +10:00
parent 93255dc698
commit 6301eccf0a

View File

@ -7,18 +7,15 @@ namespace automatically_implemented_properties
{ {
static void Main(string[] args) static void Main(string[] args)
{ {
// create a new Product object // create a new Product object and use method on it
Product myProduct = new Product(); ProcessProduct(new Product
{
// set the property value ProductID = 100,
myProduct.ProductID = 100; Name = "Kayak",
myProduct.Name = "Kayak"; Description = "A boat for one person",
myProduct.Description = "A boat for one person"; Price = 275M,
myProduct.Price = 275M; Category = "Watersports"
myProduct.Category = "Watersports"; });
// process the property
ProcessProduct(myProduct);
} }
private static void ProcessProduct(Product prodParam) private static void ProcessProduct(Product prodParam)