Compiler Error CS0260
Missing partial modifier on declaration of type 'type'; another partial declaration of this type exists
This error indicates that you have declared multiple classes that have the same name. In addition, at least one but not all of the declarations contains the partial modifier. If you want to define a class in several parts, you must declare each part by using the keyword partial.
This error also occurs if you declare a class and accidentally give it the same name as a partial class that's declared elsewhere in the same namespace.
The following sample generates CS0260: