Skip to content

EvenBar

jdubs edited this page Oct 21, 2016 · 1 revision

Overview

A private function for calculating the barcode value of the EAN13 barcode.

Source Code

internal static char EvenBar(string value)
{
	var t = 75 + Convert.ToDouble(value);
	return (char)t;
}

Clone this wiki locally