Skip to content

CharReplacement

jdubs edited this page Oct 21, 2016 · 1 revision

Overview

Provides a shortcut for replacing characters defined in the Barcode Symbology struct.

Source Code

internal static string CharReplacement(char code, string[] symb)
{
	List<string> chars = new List<string>(symb);
	return chars[Convert.ToInt32(code.ToString())];
}

References

Clone this wiki locally