WPF MVVM JSON Operations : (Part - I : Read Json File Data to List and Show on Xmal using DataGrid ) See the folder structure and Code as per the Folders and Design Pattern **Folder-SourceDataFile => PeopleData.json [ { "firstName": "Joe", "lastName": "Jackson", "gender": "male", "age": 28, "number": "7349282382" }, { "firstName": "James", "lastName": "Smith", "gender": "male", "age": 32, "number": "5678568567" }, { "firstName": "Emily", "lastName": "Jones", "gender": "female", "age": 24, "number": "456754675" } ] **Folder-Model=> PersonModel.cs public class PersonModel:NotifyP
Comments
Post a Comment