"If a worker wants to do his job well, he must first sharpen his tools." - Confucius, "The Analects of Confucius. Lu Linggong"
Front page > Programming > What Does the `=>` Operator Do in C# Properties and Methods?

What Does the `=>` Operator Do in C# Properties and Methods?

Posted on 2025-02-18
Browse:379

What Does the `=>` Operator Do in C# Properties and Methods?

] in the C# attribute or method, the meaning of the operator

In C#, the

=> operator plays an important role in defining expression body members, which is a syntactic sugar feature introduced in C# 6. These members provide a concise syntax for getter methods in properties.

Expression body attribute]

Use the

=> operator in the property declaration creates an expression body member. This means that the compiler will automatically generate a getter method whose return value is the expression to the right of the arrow.

For example, consider the following expression body attributes:

public int MaxHealth => Memory[Address].IsValid ? Memory[Address].Read(Offs.Life.MaxHp) : 0;
This code actually defines a property that has a getter method that returns:

    If
  • Memory[Address].IsValid is true, return Memory[Address].Read(Offs.Life.MaxHp)]
  • ]]
  • If Memory[Address].IsValid is false, return 0

Difference between field initialization

]

Unlike expression body properties, field declarations with initializers evaluate their expressions only at one time during type instantiation. For example:

public int MaxHealth = x ? y : z;

This code declares a field whose value is determined by the ternary conditional operator, which is evaluated only when the type is instantiated.

Other expression body members

]

Expression body members are not limited to attributes. They can also be used for:

  • Indexer
  • method
  • operator
  • Constructor (added in C# 7.0)
  • Terminator (added in C# 7.0)

However, they cannot be used for nested types, events, or fields.

Difference between Lambda Expressions

While expression body members have similarities to lambda expressions, they are different concepts. The lambda expression produces a delegate instance or expression tree, and the expression body member is a directive for the compiler to generate a specific member implementation behind the scenes.

=>The existence of the operator is mainly used to distinguish expression body members from other C# 6 functions.

Latest tutorial More>

Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.

Copyright© 2022 湘ICP备2022001581号-3