C# Nameof OperatorC# NameOf operator is used to get name of a variable, class or method. It returns a simple string as a result. In error prone code, it is useful to capture a method name, in which error occurred. We can use it for logging, validating parameters, checking events etc. Note: if we want to get fully qualified name, we can use typeof expression along with nameof operator.Let's see an example that implements nameof operator. C# Nameof Operator Example 1Output: Variable name is: name Method name is: show We can also use it to get method name in which exception is occurred. See, the following example. C# Nameof Operator Example 2Output: Index was outside the bounds of the array. Method name is: show Next TopicC# Dictionary Initializer |
We provides tutorials and interview questions of all technology like java tutorial, android, java frameworks
G-13, 2nd Floor, Sec-3, Noida, UP, 201301, India