How to add/append some objects into an object array with C#, I can add a static object but I don't know how to add an object with dynamic.
please do me a favor to give me any slight clue to deal with this issue, thanks
object dataSource = new object[] {
new { a1 = "111", a11 = "Simpson" },
new { a1 = "Marge ", a11 = "Simpson" },
new { a1 = "Bart", a11 = "Simpson" },
new { a1 = "Lisa", a11 = "Simpson" },
new { a1 = "Maggie", a11 = "Simpson" },
...............
};