`
net_liu
  • 浏览: 232798 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论
文章列表
当你走近会客室,面试过程就开始了,当然你得不卑不亢,谦虚谨慎,除了这些放之四海皆准的原则,你还应该知道。面试就是个沟通,让对方认识到你的实力,并且你也了解到是否喜欢并且能做这个工作,后者可能很多人没有 ...
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML> <HEAD> <TITLE> 导出到Excel </TITLE> <META NAME="Generator" CONTENT="EditPlus"> <META NAME="Author" CONTENT=""> ...

cookie记住密码

Web 
cookie记住密码: /// <summary> /// 记住密码 /// </summary> private void RememberPassword() { if (cbRememberPW.Checked) { //记住密码 System.Web.HttpCookie newCookie = new HttpCookie("user"); newCookie.Values["u ...
1. 简单点查询 (1)引用      using ESRI.ArcGIS.Geodatabase; using ESRI.ArcGIS.DataSourcesFile; using ESRI.ArcGIS.esriSystem; using ESRI.ArcGIS.Geometry;  (2)ArcEngine的Licence认证 IAoInitialize m_AoInitialize = new AoInitializeClass(); esriLicenseStatus licenseStatus = esriLicenseStatus.esri ...
指定随机数的输出 主程序入口:   namespace RandomNumber { class Program { static void Main(string[] args) { Console.WriteLine("采摘0-100之间不重复数:"); Console.WriteLine(); RandomSetOfNumber rdm = new RandomSetOfNumber(0, 100); s ...
if-else 都输出的方法 if (new Func<bool>(() => { Console.Write("Hello"); return false; }).Invoke()) Console.Write("Hello"); else Console.Write(" World!");   new Func<bool>(() => { Console.Write("Hello"); return ...
C# 实现文子从上到下,从右到左 对OnPaint()方法的重写:   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; namespace OverrideOnPaint { public partial class Form1 : Form ...
什么是反射? 反射就是在运行时,动态获取对象信息的方法。比如:运行时获得对象有哪些属性,方法,委托等。 反射的作用? 能够实现运行时,动态调用对象的方法,以及动态设置、获取属性值等。 反射的示例: using ...
//多个数的公倍数        public static Int32 GetMinGB(Int32[] arr)        {            Int32 min = 0;            for (Int32 i = arr.Max(); true; i++)            {                Boolean flag = true;                for (Int32 j = 0; j < arr.Length; j++)                {                    if (i % arr[j] != ...
发一个接口做参数的例子 回头接口 using System; using System.Collections.Generic; using System.Text; namespace observer2 { public interface IMaster { void buy_slave(ISlave some_slave); void send_command(); } public interface ISlave { void slave_do_work(); } class Test { sta ...
C#中的正则表达式包含在.NET基础类库的一个名称空间下,这个名称空间就是System.Text.RegularExpressions。该名称空间包括8个类,1个枚举,1个委托。他们分别是:                     Capture: 包含一次匹配的结果;        ...
1.如果可能尽量使用接口来编程  .NET框架包括类和接口,在编写程序的时候,你可能知道正在用.NET的哪个类。然而,在这种情况下如果你用.NET支持的接口而不是它的类来编程时,代码会变得更加稳定、可用性会更高。请分析 ...
使用反射动态调用类成员,需要Type类的一个方法:InvokeMember。对该方法的声明如下(摘抄于MSDN): public object InvokeMember(    string name,    BindingFlags invokeAttr,    Binder binder,    object target,    object[] args ); 参数 name String,它包含要调用的构造函数、方法、属性或字段成员的名称。 - 或 - 空字符串 (""),表示调用默认成员。
<script type="text/javascript"> var time=10; function closeWindow(){ window.setTimeout('closeWindow()',1000); if(time>0){ document.getElementById("show").innerHTML=" 倒计时<font color=red>"+time+"</font>秒后关闭当前窗口"; time--; } else{ wind ...
一个完整的木马系统由硬件部分,软件部分和具体连接部分组成。这里主要对软件部分介绍,它主要有控制端程序、木马程序(后台服务程序)、木马配制程序组成。控制端用以远程控制服务端的程序;木马程序是潜入服务端内 ...
Global site tag (gtag.js) - Google Analytics