How to refer to enum constants in c# xml docs

跟風遠走 提交于 2019-12-04 22:48:35

The prefixes F, M and E are all valid and probably the reason that the compiler warning disappears.

You should however use the F that refers to fields. For more information on how Visual Studio generates documentation identifiers see:

Processing the XML File (C# Programming Guide)

I don't think you should need the prefix - probably you need to add a "using" to the namespace where the Orientation type is defined.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!