Генерация штрих-кода ean13 C#
У меня есть ошибка в этой строке
ean13.Code = BarcodeEAN.GetBarsEAN13(row.Cells[12].Value.ToString(), false, BarcodeEAN.EAN13);
Severity Code Description Project File Line Suppression State Error CS1501 No overload for method 'GetBarsEAN13' takes 3 arguments BSS C:\Users\GB\source\repos\BSS\BSS\7101_Proizvodni_Proces_Pregled.cs 5317 Active
Что я уже пробовал:
BarcodeEAN ean13 = new BarcodeEAN(); ean13.CodeType = Barcode.EAN13; ean13.ChecksumText = true; ean13.GenerateChecksum = true; ean13.Code = BarcodeEAN.GetBarsEAN13(row.Cells[12].Value.ToString(), false, // error BarcodeEAN.EAN13); System.Drawing.Bitmap bm = new system.Drawing.Bitmap(ean13.CreateDrawingImage(System.Drawing.Color.Black, System.Drawing.Color.White));