我所遇到的一些方法寫在asp.net業務邏輯,但我想知道,下面2例如,什麼是使用結構來存儲類變量的好處:業務邏輯類
namespace Shopping
{
public struct ShoppingCart
{
public string Color;
public int ProductId;
}
public partial class MyShoppingCart
{
public decimal GetTotal(string cartID)
{
}
// Some other methods ...
}
}
namespace Shopping
{
public partial class MyShoppingCart
{
public string Color{ get; set; }
public int ProductId{ get; set; }
public decimal GetTotal(string cartID)
{
}
// Some other methods ...
}
}
感謝您的明確解釋。 – k80sg
剽竊 - 第一段是從[什麼時候在C#中使用結構體]批量拷貝的(http://stackoverflow.com/q/521298) –
即使所有的編輯,這裏仍然沒有任何* original *材料。 – jmort253