我想获取bindingSource的CurrentRow实例并将其分配给私有变量。
类似的东西:
MatDataSet.KorisnikRow currentRow;
currentRow = (MatDataSet.KorisnikRow)((DataRowView)korisnikBindingSource.Current).Row;
当然,应首先创建currentRow变量,否则会弹出Object reference not set to an object
错误。但我不知道如何或知道任何解决方法,所以请帮助。
抱歉使用了糟糕的技术语言。
答案 0 :(得分:0)
您可以检查BindingSource是否为空。
if (bindingSource.Current != null)
// your conversion