常量也為這些值提供了一種便於人們閱讀的形式
即使該值只使用一次
Private Const ConstantName As Type=Value
Const將值定義為常量
例如
Private Const MemberDiscountPercentage As Single=
在計算完訂單的總價格之後
MemberDiscount=subtotal=MemberDiscountPercentage
Total=SubTotal
在本章稍後部分您將看到購物車的實現
ASP
From:http://tw.wingwit.com/Article/program/net/201311/14970.html