DescriptionThis extension warns about Enum.ToString() usage in the visual studio error list window and converts to SlimCommon.ConvertEnum.ToString() more efficient implementation For example, the following line:
Will be converted into:
As well as inside string interpolation, the following lines:
Will be converted into:
Full project / solution scanningIn order to scan all occurrences in your project / solution you can click in visual studio Analyze tab -> Run code analysis -> On Solution / Project. Attention:This auto fix doesn't add Microsoft.WCD.SevilleCloud.SlimCommon as a reference to the project or to the usings list - must be done manually. |