上一页 1 ··· 5 6 7 8 9 10 11 下一页
摘要: 使用csc命令将.cs文件编译成.dll的过程很多时候,我们需要将.cs文件单独编译成.dll文件,操作如下:打开命令窗口->输入cmd到控制台->cdC:\WINDOWS\Microsoft.NET\Framework\v1.1.4322转到vs.net安装的该目录下->执行csc命令csc/target:libraryFile.cs->在该目录下产生一个对应名字的.dll文件(前提:把.cs文件放到C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322目录下)csc命令的方式很多,请参考以下译File.cs以产生File.execs 阅读全文
posted @ 2013-10-11 14:51 JasonGu0 阅读(568) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Runtime.InteropServices;using System.Windows.Forms;namespace PrintDatas{ public static class SelectFocusInControls { // DLL调用注册 [DllImport("user32.dll", CharSet = CharSet.Auto, Callin... 阅读全文
posted @ 2013-10-11 11:53 JasonGu0 阅读(437) 评论(0) 推荐(0) 编辑
摘要: 首先要新建一个 winform窗体然后代码如下 :using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Runtime.InteropServices;namespace PrintDatas{ public partial class FormMessageBox :... 阅读全文
posted @ 2013-10-07 11:53 JasonGu0 阅读(769) 评论(0) 推荐(0) 编辑
摘要: 先申明一个枚举: public enum Test_Enum { one = 1001, two = 1002, three = 1003, four = 1004, five = 1005, six = 1006, seven = 1007, eight = 1008, nine = 1009, zero = 1000 }获取值: object ojb = Enum.GetName(typeof(Test_Enum),Test_Enum.eight); int i = (int)Test_Enum.eight; 阅读全文
posted @ 2013-09-30 14:17 JasonGu0 阅读(2226) 评论(0) 推荐(0) 编辑
摘要: [AttributeUsage(AttributeTargets.Field)] public class EnumExtension : Attribute { private string title; public EnumExtension(string title) { this.title = title; } public static string Get(Type tp, string name) { MemberInfo[] m... 阅读全文
posted @ 2013-09-30 13:54 JasonGu0 阅读(1797) 评论(0) 推荐(0) 编辑
摘要: Clipboard.SetDataObject();(附注:有很多重载方法 针对不同的需要 选择不同的方法) 阅读全文
posted @ 2013-09-22 16:10 JasonGu0 阅读(417) 评论(0) 推荐(1) 编辑
摘要: bool bol = false; foreach (Form fm in Application.OpenForms) { if (fm is fmSales) { bol = true;fm... 阅读全文
posted @ 2013-09-17 14:30 JasonGu0 阅读(356) 评论(0) 推荐(0) 编辑
摘要: private void button1_Click(object sender, EventArgs e) { System.Threading.Thread TestThread = new System.Threading.Thread(new System.Threading.ParameterizedThreadStart(Test)); object test="asdfasdf"; TestThread.Start(test); } private void Test(ob... 阅读全文
posted @ 2013-09-12 10:45 JasonGu0 阅读(237) 评论(0) 推荐(0) 编辑
摘要: var result=new DataTable().DefaultView.ToTable(false, "col1", "col2");将DataRow[] 转换成dt类型,并指定dt的列 复制给dt2;DataTable dt2= DataRow[].CopyToDataTable().DefaultView.ToTable(false, "col1", "col2"); 阅读全文
posted @ 2013-09-07 09:59 JasonGu0 阅读(512) 评论(0) 推荐(0) 编辑
摘要: 一 C# 键值对类有以下类:① IDictionary idc = new Dictionary();② KeyValuePair par = (KeyValuePair)shoplistcomboBox.SelectedItem;③Hashtable ht=new Hashtable(); file创建一个Hashtable实例 ht.Add(E,e);添加keyvalue键值对Hashtable 内的每一组对象就是一个DictionaryEntry 例如我们要循环hashtable foreach (DictionaryEntry de in myHashtable) {...} Has. 阅读全文
posted @ 2013-08-29 09:22 JasonGu0 阅读(1518) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 下一页