来自:http://www.sufeinet.com/forum.php?mod=viewthread&tid=656&extra=page%3D1%26filter%3Dtypeid%26typeid%3D287%26typeid%3D287 using System.Collections; using System.Text.RegularExpressions; public class BarCodeToHTML { public static string get39(stri…
using System.Collections; using System.Text.RegularExpressions; namespace DotNet.Utilities { public class BarCodeToHTML { public static string get39(string s, int width, int height) { Hashtable ht = new Hashtable(); #region 39码 12位 ht.Add("); ht.Add(…
订单.支付.退款.发货.退货等编号主动生成类 在商城网站中,订单编号的自动生成,ERP中各个单据的编号自动生成,都可以按照一下的方式来自动生成. 第一步:定义常量订单编号前缀.订单编号起始数.订单编号步长: public static final String ORDER_SN_PREFIX = "";// 订单编号前缀 public static final long ORDER_SN_FIRST = 100000L;// 订单编号起始数 public static final lo…
在eclipse中我们按一下快捷键就会生成类的基本信息相关的注释,其实在IDEA中也是可以的,需要我们手动设置,之后再创建类的时候就会自动加上这些基本的信息. File-->Setting 在Editor中找到File and Code Templates Editor-->File and Code Templates 找到Includes下面的File Header,之后可以在右面的文本框中自定义注释格式 我定义的是: /** * * Created with IDEA * author:…
1. class ClassHelperDemo { public static void Main() { #region 演示一:动态生成类. //生成一个类t. Type t = ClassHelper.BuildType("MyClass"); #endregion #region 演示二:动态添加属性到类. //先定义两个属性. List<ClassHelper.CustPropertyInfo> lcpi = new List<ClassHelper.Cu…