C# 4.0 Optional/Named Parameters Beginner’s Tutorial
- by mbcrump
One of the interesting features of C# 4.0 is for both named and optional arguments. They are often very useful together, but are quite actually two different things. Optional arguments gives us the ability to omit arguments to method invocations. Named arguments allows us to specify the arguments by name instead of by position. …