上一页 1 ··· 40 41 42 43 44 45 46 47 48 ··· 63 下一页
摘要: <PlugIn name="CustomMyViewPad" autor="MrGan" url="http://www.baidu.com" description=""> <Manifest><Identity name=""/> </Mainifest> <Runtime> <Import assembly=":CustomMyViewPad"/> </Runtime> <Exte 阅读全文
posted @ 2013-04-26 19:42 Predator 阅读(169) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConTest{ class AccountEventArgs : EventArgs { private string name; public string Name { get { return name; } } public AccountEventArgs(string name) { this.name = name; } } class AccountItemEventArgs:AccountEv 阅读全文
posted @ 2013-04-26 19:39 Predator 阅读(102) 评论(0) 推荐(0) 编辑
摘要: OpenFileDialogprivate FileStream OpenFile(){ // Displays an OpenFileDialog and shows the read/only files. OpenFileDialog dlgOpenFile = new OpenFileDialog(); dlgOpenFile.ShowReadOnly = true; if(dlgOpenFile.ShowDialog() == DialogResult.OK) { // If ReadOnlyChecked is true, uses the OpenFile method to / 阅读全文
posted @ 2013-04-25 20:56 Predator 阅读(158) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Dynamic;namespace ConsoleApplication1{ class Program { private static T1 Add<T1,T2>(T1 a,T2 b) { dynamic m = a; dynamic n = b; return (dynamic)(m + n); } static void Main(string[] args) { //string[] 阅读全文
posted @ 2013-04-25 20:55 Predator 阅读(131) 评论(0) 推荐(0) 编辑
上一页 1 ··· 40 41 42 43 44 45 46 47 48 ··· 63 下一页