Tag: C-Sharp

Multi-value Return in C# 7.0

Written by on February 3, 2017 in Programming with 0 Comments
Multi-value Return in C# 7.0

One of the nice language enhancements to C# in the latest release (7.0) is the ability to return multiple values from a function. Although one could use Tuples for this purpose, it is not an elegant or efficient approach. For more details, see this article. By the way, returning multiple values from a function is […]

Continue Reading

Top