示例#1
0
文件: Form1.cs 项目: d3x0r/xperdex
        void a_RowUpdating(object sender, System.Data.Common.RowUpdatingEventArgs e)
        {
            for (int i = 0; i < e.Row.ItemArray.Length; i++)
            {
                Console.WriteLine(i + " " + e.Row[i] as string);
            }

            throw new Exception("The method or operation is not implemented.");
        }
示例#2
0
 protected override void OnRowUpdating(System.Data.Common.RowUpdatingEventArgs value)
 {
 }