chiao
chiao

Reputation: 23

What is the difference between Win32 Project vs Windows Forms Application in Visual Studio?

In Visual Studio, when I go to add a project, there are two options for creating GUI applications. Win32 Project and Windows Forms Application. What's the difference between these two? Is one of them

Upvotes: 2

Views: 3308

Answers (1)

Erre Efe
Erre Efe

Reputation: 15557

Win32 are native applications primarly written with C++. (Machine dependent). Windows Forms are managed-code applications using the .NET Runtime Environment.

Between both, Windows forms are easier to program given the fact that you can choose the language you are better with; the vast amount of libraries (BCL) without bizarre things like manual memory management and the real object-oriented paradigm implementation of many of them.

Upvotes: 3

Related Questions