You are creating a DataTable. You use the following code segment to create the DataTable. (Line numbers are included for reference only.)01 Dim dt As New DataTable("Products")02 dt.Columns.Add(New DataColumn("Price", _ GetType(Decimal)))03 dt.Columns.Add(New DataColumn("Quantity", _ GetType(Int32)))04 Dim dc As DataColumn = New DataColumn("Total", _ GetType(Decimal))05 dt.Columns.Add(dc)You need to ensure that the Total column is set to the value of the Price column multiplied by the Quantity column when new rows are added or changed. What should you do? ()

A. Add the following code segment after line 05. dc.ExtendedProperties("Total") = "Price * Quantity" B. Add the following code segment after line 05. dc.Expression = "Price * Quantity" C. Write an event handler for the DataTable‘s TableNewRow event that updates the row‘s Total. D. Write an event handler for the DataTable‘s ColumnChanged event that updates the row‘s Total.

时间:2024-04-06 13:07:57

相似题目