代码改变世界

阅读排行榜

在线开发环境地址

2013-01-08 23:09 by hongjiumu, 354 阅读, 收藏,
摘要: Compilr 在线开发环境地址请猛戳这里->https://compilr.com/ 阅读全文

SQL Profile的使用

2012-08-02 15:46 by hongjiumu, 350 阅读, 收藏,
摘要: 1,进入SQL,选择工具->sql profile2,3,勾上显示所有列和事件,点列筛选器,复制自己的计算机名粘贴进去就OK另外,使用这个也可以。填写的是:就是PID了! 阅读全文

不用继承接口,一样可以把一个没有继承接口的类来实例化接口

2012-11-17 11:34 by hongjiumu, 346 阅读, 收藏,
摘要: public interface IName { int Age { get; set; } string Name { get; set; } } public class Person { public int Age{get;set;} public string Name { get; set; } public Person() { } public Person(string name,int age) { Name = name; Age = age; } } public class EmptyEntity : IName { public string Name { get; 阅读全文

删除datatable的重复行

2013-04-25 23:31 by hongjiumu, 344 阅读, 收藏,
摘要: 删除datatable的重复行private void RemoveRepeat(ref System.Data.DataTable dataTableSource) { List<string> list = new List<string>(); StringBuilder builder = null; System.Data.DataRow currenDr = null; string currentStr = string.Empty; for (int i ... 阅读全文

c# invoke c++

2013-02-25 23:56 by hongjiumu, 343 阅读, 收藏,
摘要: using System;using System.Collections.Generic;using System.Text; namespace ConsoleApplication1{ class Program { static void Main(string[] args) { MessageBoxA(0,"Hello World!","My Message Box",0); Console.WriteLine("Over"); Console.Read(); }... 阅读全文
上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 42 下一页