Compiler Error CS0766
Visual Studio 2008
Partial methods must have a void return type.
A partial method cannot return a value. Its return type must be void.
To correct this error
Give the partial method a void return type, or else convert the method to a regular (not partial) method.