using System;namespace _1_2源程序{class Program{static void Main(string[] args){float x, y;char c = '\x41';//\x是16进制的意思也就是c='\x41'=(41)16=(4*16+1)10=(65)10;即c='A'Console.Write("Enter the first number:
protected List<T> GetListByDataTable(DataTable dt){List<T> resultInfo = new List<T>();// 获得此模型的类型 Type type = typeof(T);string tempName = "";foreach (DataRow dr in dt.Rows){T info = new T();// 获得此模