Monday, 15 March 2021

Add Object to an array

 

add an object with key value to the an exixsting array here address is key and value move it to the an array

  myarray[0].Address = "123 Some St.";
   or
   
   myarray[0]["Address"] = "123 Some St.";


1 comment:

7 Common mistakes in Dot Net — You can avoid

  There are many common mistakes made during .NET (ASP.NET, .NET Core) development, which affect performance, security, and code… Code Crack...