L
Liz
Can any one tell me how I express the following VB.NET
code in C#????
1.
Private Sub _productsData_ListChanged( _
ByVal sender As Object, _
ByVal e As System.ComponentModel.ListChangedEventArgs) _
Handles _productsData.ListChanged
.. . .
2.
DataView1.Item(_productsData.Count - 1) ("OrderID") = _
_order.orderID
Liz
code in C#????
1.
Private Sub _productsData_ListChanged( _
ByVal sender As Object, _
ByVal e As System.ComponentModel.ListChangedEventArgs) _
Handles _productsData.ListChanged
.. . .
2.
DataView1.Item(_productsData.Count - 1) ("OrderID") = _
_order.orderID
Liz