Code 39 Mod 43 barcode checkdigit function
Have to find the original code, the code is wrong. [sourcecode language="csharp"] //pass in a string and returns string with check digit public string getCode39Mod43(string s) { int sum = 0; string temps = s.ToUpper(); for (int i = 0; i < s.Length; i++) { sum += AsciiToCharTable(temps[i]); } int mod = sum % 43; [...]