The Syncfusion native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
I have an ArrayList personList consisting of objects of class Person.
I need to bind the text value of textBox1 to the
Names field of the class Person.
textBox1.DataBinding.Add(new Binding("Text",personList,"Person.Name");
I am trying to use ArrayList as a datasource but I get a runtime error "Invalid string corresponding to "Person.Name".
What string should I pass to the Binding Constructor?
Thanks
Mukesh