
L Other
文章平均质量分 79
wovow
这个作者很懒,什么都没留下…
展开
-
返回给定字符串的首字母
返回给定字符串的首字母Function IndexCode(ByVal IndexTxt As String) As String Dim i As Integer For i = 1 To IndexTxt.Length IndexCode = IndexCode & GetOneIndex(Mid(IndexTxt, i, 1)) Next转载 2004-10-11 21:50:00 · 1184 阅读 · 0 评论 -
Create and manipulate PDF documents - 100% .NET
This is a showcase review for our sponsors at CodeProject. These reviews are intended to provide you with information on products and services that we consider useful and of value to developers. Int转载 2004-11-05 10:16:00 · 1403 阅读 · 0 评论 -
.NET中的密码学--对称加密
在.NET之前,使用非托管的Win32APIs加密解密数据是一件非常痛苦的事情。为了这个加密解密的目的,.NET配置了一组类(和命名空间)。现在你有很多类可以使用每种不同的算法保护你的数据。在.NET里面Crypttography命名空间下又定义了3种类型的加密方法。他们是AsymmetricAlgorithm,SymmetricAlgorithm和HashAlgorithm。所有的这些类(和.N转载 2004-11-26 21:14:00 · 959 阅读 · 0 评论 -
使用DES对称加密代码,支持中文
//名称空间 using System; using System.Security.Cryptography; using System.IO; using System.Text; //方法 //加密方法 public string Encrypt(string pToEncrypt, string sKey) { DESCryptoServicePr转载 2004-11-26 21:16:00 · 1843 阅读 · 0 评论 -
IDesign C#编程规范
1 命名规则和风格 naming conventions and style2 编码惯例 coding practices3 项目设置和结构 project settings and structure4 framework特别指导 framework specific guidelines4.1 数据访问 data access4.2 asp.net和web service asp.net an转载 2004-11-26 21:12:00 · 1147 阅读 · 0 评论