I\'m playing around with creating a source code generator for C# (.NET). Will generating properties or methods that never get called cause my code to run slower? How about i
You should consider using partial methods, especially when using code generators. A partial method, if it's not actually implemented, will be removed by the compiler.