摘要: 想要了解Linq, 先必須知道System.Linq中定義的5個delegatepublic delegate T Func<T>();public delegate T Func<A0,T>(A0 arg0);public delegate T Func<A0,A1,T>(A0 arg0,A1 arg1);public delegate T Func<A0,A1,A2,T>(A0 arg0,A1 arg1,A2 arg2);public delegate T Func<A0,A1,A2,A3,T>(A0 arg0,A1 arg1,A 阅读全文
posted @ 2013-04-17 11:38 邪见 阅读(213) 评论(0) 推荐(0)
摘要: VB中對linq to xml 的支持1. XML字面值dim book = <book title="title"> <Author>dm</Author> </book>2. 動態XMLdim tag = "Description"dim simple = <<%= tag %>>description simple </>'注意<%= %> 要有空格 '結束標籤 </>3. 與Linq的結合, 產生XMLdim book = 阅读全文
posted @ 2013-04-17 11:32 邪见 阅读(160) 评论(0) 推荐(0)