摘要:
1.堆栈:先进后出,列举个小例子 public void DoStack() { //将元素插入栈 Stack st = new Stack(); st.Push("Hello Work"); st.Push("A"); st.Push("B"); st.Push("C"); //获取栈顶元素 ob 阅读全文
摘要:
举个例子给大家加深印象,也方便理解: 1.目前有这几笔数据: Select '1班' banji,'张三' as name ,56 as score into #studentSoure union all Select '1班' banji,'李四' as name ,66 as score un 阅读全文
摘要:
using iTextSharp.text; using iTextSharp.text.pdf; using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Tex 阅读全文
摘要:
委托:就是一个方法的类型,下面3个调用情况来详细熟悉一下: 1.调用组合委托 //委托:就是一个方法的类型 public delegate int TestDelegateStr(); public delegate string TestDelegateInt(int a); public cla 阅读全文