using System;using System.Collections.Generic;using
System.Linq;using System.Text;using System.Threading.Tasks;namespace GetSetTest{
class A { ...
分类:
其他好文 时间:
2014-05-10 07:39:24
阅读次数:
220
使用索引器的目的是为了能够像数组一样访问类中的数组型的对象。using
System;using System.Collections.Generic;using System.Linq;using
System.Text;using System.Threading.Tasks;namespace...
分类:
其他好文 时间:
2014-05-10 05:43:44
阅读次数:
218
参考资料:《大话设计模式》//模板方法模式--处理问题的步骤相同,但步骤的实现不同using
System;using System.Collections.Generic;using System.Linq;using
System.Text;namespace ds_templatemethod...
分类:
其他好文 时间:
2014-05-10 05:19:04
阅读次数:
322
基本知识
1. SQL Server7 的 DeskTop 版中没有全文本检索。
2. 一个表只能有一个全文本检索。
3. 被检索的表必须有单列的唯一索引。
4. 全文本的索引存储在文件系统中,而非数据库中。
5. 更新全文本索引的过程比常规索引要耗时,而且也不象常规索引那样可以由数据库系统立即更新。
6. 全文本索引包含在全文本目录( Full-Text Catalog ...
分类:
其他好文 时间:
2014-05-09 22:54:56
阅读次数:
361
Sublime Text默认的语法高亮已经很漂亮了,但是对于个别语言还是有些不爽。
默认高亮规则叫Monokai,可以从Preferences->Settings - Default中看到:
可是这个高亮规则对Json语法的高亮却显得有点单调。上图的配置就是Json格式的。
下面说说是怎么换的。
一、下载自己喜欢的主题
Control + Shift + P打开控制台,输入IP,...
分类:
其他好文 时间:
2014-05-09 22:45:00
阅读次数:
562
INI文件的操作(ASP.NET+C#)
(一)INIFile.cs
using System;
using System.Runtime.InteropServices;
using System.Text;
namespace CreateWebDir
{
///
/// INIFile 的摘要说明。
///
public class INIFile ...
分类:
Web程序 时间:
2014-05-09 22:18:42
阅读次数:
319
tableView 实现的方法 无分组的cell
#pragma mark - Table view data source
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return self.contacts.count;
}
- (UITable...
分类:
移动开发 时间:
2014-05-09 21:03:32
阅读次数:
424
原生js方式:var obj =
document.getElementByIdx_x(”testSelect”); //定位idvar index = obj.selectedIndex;
// 选中索引var text = obj.options[index].text; // 选中文本var ...
分类:
Web程序 时间:
2014-05-09 19:48:36
阅读次数:
384
using System;using System.IO;using
System.Security.Cryptography;using System.Text;namespace Test{ public class
MD5Code { /// /// ...
分类:
其他好文 时间:
2014-05-09 19:43:27
阅读次数:
277
1.安装Sublime Package Control在Sublime Text
2上用Ctrl+~打开控制台并在里面输入以下代码,Sublime Text 2就会自动安装Package Control。import urllib2,os;
pf=’Package Control.sublime-p...
分类:
其他好文 时间:
2014-05-09 19:31:24
阅读次数:
270