摘要: public interface IRandomTextGenerator { /// <summary> /// Gets or sets the settings. /// </summary> /// <value>The settings.</value> RandomTextGeneratorSettings Settings { get; set; } /// <summary> /// Generates this instance. /// </summary... 阅读全文
posted @ 2012-11-28 17:39 net_miao 阅读(116) 评论(0) 推荐(1) 编辑
摘要: public static class CryptoHelper { #region 加密/解密的主要算法 private static readonly Byte[] _KeyByte = { 81, 1, 132, 230, 34, 29, 50, 200 }; private static readonly Byte[] _IVByte = { 84, 41, 32, 50, 93, 47, 4, 154 }; /// <summary> /// 字符串加密 /// </summary> ... 阅读全文
posted @ 2012-11-28 17:36 net_miao 阅读(152) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Web.Mvc;using C2BUY.Community.Entity;using System.Web.Routing;namespace C2BUY.Community.Web.Core.UIHelper{ public class PagerBuilder { private readonly HtmlHelper _html; private readonl... 阅读全文
posted @ 2012-11-28 17:34 net_miao 阅读(168) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2012-11-28 17:31 net_miao 阅读(0) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace C2buy.Framework.Utility.StopWords{ public class TrieTree { private readonly Dictionary<char, TrieTree> Children; public bool End { get; set; } public TrieTree() { ... 阅读全文
posted @ 2012-11-28 17:24 net_miao 阅读(245) 评论(0) 推荐(0) 编辑