Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
523 views
in Technique[技术] by (71.8m points)

c# - What is the difference between MyEnum.Item.ToString() and nameof(MyEnum.Item)?

MyEnum.Item.ToString();
nameof(MyEnum.Item);

Which style is preferred? Is there any practical difference between the two?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

The first is a run-time call that will realise at runtime it needs to return the string "Item", and do so.

The second is another way to write "Item" straight into the code.

The second would be slightly faster, but prior to C#6 would not have been available. To put "Item" in the code manually would have therefore been an optimisation that risked an error, while nameof() would catch such an error at compile-time.

As such while the approach of using the name directly might once have been considered taking a risk, that risk is gone, and it has a slight edge.

ToString() though remains the only way to output the string based on a variable or expression of the MyEnum type.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

56.8k users

...