首页 > TAG信息列表 > planeText

将字符串生成ZPL的Code128Auto编码

internal string Code128AutoZPL(string planeText) { StringBuilder sb1 = new StringBuilder(); bool isDigit = GetDigitLength(planeText, 0) >= 2; for (int i = 0; i < planeText.Length; i++) { in