我正在使用 Zxing.Mobile 扫描我的 monodroid 应用程序中的条形码。我正在使用 Xamarin。根据他们的文档,以下代码行应该可以工作:
var scanner = new ZXing.Mobile.MobileBarcodeScanner();
scanner.Scan().ContinueWith(t => {
if (t.Result != null)
Console.WriteLine("Scanned Barcode: " + t.Result.Text);
});
但我收到以下错误:
The type 'Zxing.Mobile.MobileBarcodeScanner()' does not contain a constructor that takes '0' arguments
知道为什么我会收到此错误,我该如何摆脱它?提前致谢。