Implicitly typed arrays C# with Example



Implicitly typed arrays C# with Example

Arrays of anonymous types may be created with implicit typing. 
var arr = new[] { 
new { Id = 0 }, 
 

new { Id = 1 } 
}; 
 

0 Comment's

Comment Form

Submit Comment