
c#
yunshouhu
爱Java,更爱Android,学VC,搞c/c++的我。专注移动安全,游戏安全,逆向安全!十年戎马成神路,君临天下风雷动! https://github.com/yunshouhu
展开
-
插件技术原理及其C#实现(一)插件技术原理及其特性
插件技术原理及其C#实现(一)插件技术原理及其特性(原创不易,引用请注明作者、出处!)插件是一种遵循统一的预定义接口规范编写出来的程序,应用程序在运行时通过接口规范对插件进行调用,以扩展应用程序的功能。插件在英文中通常称为plug-in、plugin或者plug in。插件最典型的例子是Microsoft的ActiveX控件和COM(Component Object Model,部件对转载 2013-11-18 11:20:17 · 1797 阅读 · 0 评论 -
c#使用实例之我的c#浏览器
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.Dia原创 2014-11-17 11:21:04 · 794 阅读 · 0 评论 -
c#使用实例之命令行编译cs源码demo.cs
using System.Drawing;using System.Windows.Forms;//编译 打开vs2010的命令行工具 执行:csc.exe demo.cs即可public class Demo : Form{ public Demo(){ // Create a new ListView control.原创 2014-11-17 17:52:10 · 1429 阅读 · 0 评论 -
c#使用实例之简单的入门程序
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace Project1{ class TestMain { public static void Main() { Console.Wr原创 2014-11-17 17:46:19 · 861 阅读 · 0 评论 -
c#技巧
1、选择文件框 StreamReader reader; OpenFileDialog openFileDialog1 = new OpenFileDialog(); openFileDialog1.InitialDirectory = "c:\\"; openFileDialog1.Filter = "txt fil原创 2014-11-18 13:34:25 · 634 阅读 · 0 评论 -
c#实现常用电脑操作
EcanDOS dos = new EcanDOS();dos.打开控制面板();dos.打开注册表();using System;using System.Collections.Generic;using System.Text;using System.IO;using System.Diagnostics;using System.Runtime.InteropServ原创 2014-11-18 13:35:24 · 1131 阅读 · 0 评论