在ADO.NET中,下列代码运行后的输出结果是()。
DataTable dt =new Datatable();
dt.Columns.Add("编号",typeof(System.Int16));
dt.Columns.Add("成绩",typeof(System.Single));
Console.WrintLine(dt.Columns[1].dataType);
1.System.Int16
2.System.Single
3.编号
4.成绩
在ADO.NET中,下列代码运行后的输出结果是()。
DataTable dt =new Datatable();
dt.Columns.Add("编号",typeof(System.Int16));
dt.Columns.Add("成绩",typeof(System.Single));
Console.WrintLine(dt.Columns[1].dataType);
1.System.Int16
2.System.Single
3.编号
4.成绩
选择第2个