I have a some class, which contains three fileds:
protected bool _isRunning = false;
protected readonly ParameterCollection _parameters = null;
protected readonly ParameterCollection _defaultParameters = null;
Assembly, in which it is, marked as CLS-compliant (it is needed), and VS 2010 says me that those three fileds' identifiers are not CLS-compliant. Can anyone answer me: what wrong with them? P.S.: ParameterCollection is a class, derived from KeyedCollection if it is important information.