partial classes feature

May I know how to turn off the partial class feature in Visual Studio 2005 (for express, and proffesional edition).

Your avuable feedback is much appreciated.

Thanks.

[185 byte] By [czkiam] at [2007-12-25]
# 1
Why would you want to do that? I don't think it can be turned off, it's a compiler feature.
MattiasSj?gren at 2007-9-3 > top of Msdn Tech,Visual Studio Express Editions,Visual C# 2005 Express Edition...
# 2
I think he likes to turn the Visual Studio's feature off, that creates Forms as partial classes. In visual studio 2003 form's code and design were in same file, as you know.

But I think that partial class approach with forms is just great. It hides the "design code", so that "operational code", such as event handlers, are easier to find.

rauhanlinnake at 2007-9-3 > top of Msdn Tech,Visual Studio Express Editions,Visual C# 2005 Express Edition...
# 3

IT is becuase MSBee is not support partial class feature in VS 2005. I failed to compile the program into .NET 1.1 version with MSBee.

By the way, partial class is great while it seperate the designer code for us, but it do make some disadvantages too. It is hard for me to admend the class constructor and Main mothod in VB 2005.

czkiam at 2007-9-3 > top of Msdn Tech,Visual Studio Express Editions,Visual C# 2005 Express Edition...