Do not expose Listin object models. Use Collection , ReadOnlyCollection or KeyedCollection instead. List is meant to be used from implementation, not in object model API. List is optimized for performance at the cost of long term versioning. For example, if you return List to the client code, you will not ever be able to receive notifications when client code modifies the collection.
Do not change the value of the Name attribute below. If it does not match the folder name of the List Definition project ...
Do not declare explicit static constructors on value types. Initializing static data in explicit static constructors results ...
Do not declare new delegates to be used as event handlers when targeting a version of the .NET Framework that supports generics. ...
Do not explicitly raise exceptions from unexpected locations. There are some methods, such as Equals and GetHashCode, which ...
Do not expose List in object models. Use Collection , ReadOnlyCollection or KeyedCollection instead. List is meant to be ...
Do not nest type {0}. Alternatively, change its accessibility so that it is not externally visible. If this type is defined ...
Do not poll more often than or utilize timers that fire more frequently than once per second. Higher frequency periodic activity ...
Do not set process priority to Idle. Processes with System.Diagnostics.ProcessPriorityClass.Idle will occupy the CPU when ...
Do not use 'C' as a prefix for type names. Do not use any prefix for naming types. Consider using the name of the base class ...