I'm having troubles with the code analysis tool in Visual Studio 2010; I have a class used to manipulate multi-strings, therfore I named my class MultiString
. When I run the code analysis tool I get the warning:
CA1704 : Microsoft.Naming : Correct the spelling of 'Multi' in type name 'MultiString'.
The same problem arises when is use the term multiString
as paramter name or IsMultiApplicationCard
as property name.
Thanks to the topic Code Analysis - CA1704: Correct the spelling of 'Ps' I found out that the term multi is unrecognized by default. Now I wonder why (I'm not a native speaker). Isn't multi a valid word? What word should I use instead? Or would you suggest to use Multiapplication and Multistring?