Online Home
https://zerotomastery.io/cheatsheets/csharp-cheat-sheet/
var anon = new { Name = "John", Age = 25 };
var person = Tuple.Create("John", 25); // Creates a tuple with two items.
person.item1; person.item2;
https://www.geeksforgeeks.org/c-sharp/c-sharp-tuple/
No comments:
Post a Comment