frank
frank

Reputation:

MFC versions for visual studio

what is the version of MFC in VC++ 6.0,vc++ 2003,vc++ 2005 and vc++ 2008 ? i faced this question in interview but i could not reply? so any body tell me the versions of MFC.

Upvotes: 4

Views: 2474

Answers (2)

user1125078
user1125078

Reputation: 9

MFC have at least four generation in the pass 10 years,We can see ,the main difference between the generations is the development of the compiler of C++ class type .What i intersted in is why you ask this question?

Upvotes: -1

Paul Dixon
Paul Dixon

Reputation: 300845

See this wikipedia page. Specifically:

VC++ 6.0   MFC 6.0        (mfc42.dll)
VC++ 2003  MFC 7.1        (mfc71.dll), .NET 1.1
VC++ 2005  MFC 8.0        (mfc80.dll), .NET 2.0
VC++ 2008  MFC 9.0.21022  (mfc90.dll), .NET 3.5

Upvotes: 8

Related Questions