السلام عليكم
نعنم ... كلام أ الاستاذ صحيح
Structs are value types
Classes, are reference types
اعطيك مثال :
تتعامل معاه :;
نعنم ... كلام أ الاستاذ صحيح
Structs are value types
Classes, are reference types
اعطيك مثال :
كود :
struct TotalCost
{
public int ItemsCount, Price;
public TotalCost(int ItemsCount, int Price)
{
this.ItemsCount = ItemsCount;
this.Price = Price;
}
}تتعامل معاه :;
كود :
TotalCost totalCost = new TotalCost(10, 19);
