摘要: Java 编辑器支持 Code Minings 功能 Java 编辑器现在可以在 Java 元素的上方以“装饰文本”的形式显示实现和引用的数量,即 Code Minings(代码挖掘)功能 Java 编辑器现在可以在 Java 元素的上方以“装饰文本”的形式显示实现和引用的数量,即 Code Min 阅读全文
posted @ 2015-07-06 13:13 如.若 阅读(778) 评论(0) 推荐(0) 编辑
摘要: 冒泡排序1:public void RisePot(ref int [] array) { int a = array.Length; for (int i = 0; i i; j--) { ... 阅读全文
posted @ 2015-07-06 13:07 如.若 阅读(242) 评论(0) 推荐(0) 编辑
摘要: class Program { class Result { public T data; public string Message; public bool Success; ... 阅读全文
posted @ 2015-07-06 11:46 如.若 阅读(3042) 评论(0) 推荐(0) 编辑
摘要: class Program { static void swap( ref int atemp, ref int btemp)//注意ref的使用 { int temp = atemp; atemp = btemp; ... 阅读全文
posted @ 2015-07-06 11:42 如.若 阅读(208) 评论(0) 推荐(0) 编辑
摘要: using System; namespace UnsafeTest{ unsafe struct link { public int x; public link* next; } class Program { stati... 阅读全文
posted @ 2015-07-06 11:38 如.若 阅读(478) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Linq;using System.Text;using System.Web.UI;using System.Web.UI.... 阅读全文
posted @ 2015-07-06 11:34 如.若 阅读(268) 评论(0) 推荐(0) 编辑
摘要: /// /// Base64编码/// /// /// public string base64Encode(string data){ try { byte[] encData_byte = new byte[data.Length]; encData_by... 阅读全文
posted @ 2015-07-06 11:32 如.若 阅读(309) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.IO;using System.Net;using System.Net.Sockets;using System.Text; namespace TestDnsResolver{ ... 阅读全文
posted @ 2015-07-06 11:29 如.若 阅读(1084) 评论(0) 推荐(0) 编辑
摘要: class Program { static List allFileName=new List(); static void Main(string[] args) { string[] drives = Dire... 阅读全文
posted @ 2015-07-06 11:25 如.若 阅读(661) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text; namespace S{ class Program { static void Main() ... 阅读全文
posted @ 2015-07-06 11:19 如.若 阅读(749) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text; namespace twoArray{ class Program { static void Main(s... 阅读全文
posted @ 2015-07-06 11:15 如.若 阅读(3882) 评论(0) 推荐(0) 编辑
摘要: using (Graphics g = this.CreateGraphics()) { g.SmoothingMode = SmoothingMode.HighQuality; //图片柔顺模式选择 g.Interpolat... 阅读全文
posted @ 2015-07-06 11:09 如.若 阅读(4132) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections;using System.IO;using System.Net;using System.Text;using System.Xml;using System.Xml.Serialization;namespace His... 阅读全文
posted @ 2015-07-06 10:13 如.若 阅读(937) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Web;using System.Text;using System.Reflection;using System.Collections;using System.Collect... 阅读全文
posted @ 2015-07-06 09:48 如.若 阅读(486) 评论(0) 推荐(0) 编辑
摘要: #endregion #region Json字符串转换为DataTable 实例方法 public DataTable JsonToDataTable(json) { DataTable dt= ToDataTable(json); return... 阅读全文
posted @ 2015-07-06 09:34 如.若 阅读(725) 评论(0) 推荐(0) 编辑