using System; using System.Collections.Generic; using System.Linq; using System.Reflection;// <------------- 添加引用 using System.Text; using System.Threading.Tasks; namespace 反射Reflection { class Program { static void Main(string[] args) { //加载DLL,要放在编…
2.1利用字符串API 字符串是Java类型最常用.并且是复合类型 串非常经常用于,其最佳API熟悉文档. 推断串中有没有反复的字符 String s ="abcdebxyz"; 推断当中有没有反复字符 /*推断串中有没有反复的字符 String s ="abcdebxyz"; 推断当中有没有反复字符*/ package StringAPI; public class JudgeRepeatInString { public static void main(Str…
创建一个学生类: public class Student { public int Id { set; get; } public string Name { set; get; } public string Sex { set; get; } public int Age { set; get; } } 创建一个处理数据的类: public class Deal<T> where T : class { public T DealModel(T model) { var list=mod…