Appverse.Platform.IPhone.IPhoneScanner.BarcodeToZxing C# (CSharp) Метод

BarcodeToZxing() приватный Метод

private BarcodeToZxing ( BarCodeType format ) : ZXing.BarcodeFormat
format BarCodeType
Результат ZXing.BarcodeFormat
		private ZXing.BarcodeFormat BarcodeToZxing (BarCodeType format){
			foreach(ZXing.BarcodeFormat type in Enum.GetValues(typeof(ZXing.BarcodeFormat))){
				if(format.ToString().Equals(type.ToString())) return type;
			}

			return ZXing.BarcodeFormat.QR_CODE;
		}