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;
		}