public class Student : ObservableObject
{
public string StudentName { get; set; }
public string StudentType { get; set; }
public string Section { get; set; }
public double Number { get; set; }
public string School { get; set; }
public object this[string key] { get; set; }
public bool ContainsKey(string key);
public Dictionary<string, object> GettingDictionary();
}
"[ / c o d e ]"
I am creating a instace for the list of students
List<Student> localcontext = new List<Student>();
I want to add one more string "StudentLocation" from the instance 'localcontext' to the Student object in some other place.
Bookmarks