0

What exactly is the partial class in c#.net?

create button
{
 call constorctor

}

To create object of partial class in c#.net while using windows form application.

Vadim Kotov
  • 8,084
  • 8
  • 48
  • 62

1 Answers1

0

Follow below link for partial class definition, https://learn.microsoft.com/en-us/dotnet/csharp/programming-guide/classes-and-structs/partial-classes-and-methods

You can create object of partial class as like any other class object . e.g. classname obj = new classname();

Hitesh Kansagara
  • 3,308
  • 3
  • 17
  • 32