Posts by C. Alexandre • 1 point
1 post
-
-2
votes1
answer43
viewsA: How to use a literal tuple as property of a class in C#
Just to remind you. The Tuple class was introduced in . NET Framework 4.0. static void Main(string[] args) { var person = GetPerson(); } static Tuple<int, string> GetPerson() { return…
c#answered C. Alexandre 1