摘要:
public interface IRandomTextGenerator { /// <summary> /// Gets or sets the settings. /// </summary> /// <value>The settings.</value> RandomTextGeneratorSettings Settings { get; set; } /// <summary> /// Generates this instance. /// </summary... 阅读全文
摘要:
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> ... 阅读全文
摘要:
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... 阅读全文
该文被密码保护。 阅读全文
摘要:
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() { ... 阅读全文