Barcode scanning using ZXing library in Xamarin Applications

Other topics

Sample Code

button.Click +=async delegate 
{ 
var MScanner = new MobileBarcodeScanner(); 
var Result = await MScanner.Scan(); 
if(Result == null) 
{ 
    return; 
} 
//get the bar code text here 
string BarcodeText = Result.text; 
}

Contributors

Topic Id: 9526

Example Ids: 29441

This site is not affiliated with any of the contributors.