DCSIMG
June 2008 - Posts - public: class Alon : IArchitect, IAzure, ICPP, ISmartHome, IHomeServer

Syndication

June 2008 - Posts

Thanks for all the C++ developers that came today to the Microsoft C++ Open House. I hope that you enjoyed and learned about the new features of MFC, TR1, C++/CLI and C++ ox.

As I promised here are the slides and examples.

 

In addition I told you about the JobObjectWrapper project. This is a good example of using C++/CLI to bring the native world capabilities to the .NET world.

 

For those who were in the Windows Server 2008 open house, here are the post with the examples of that day.

 

One last thing, at the beginning of the day I asked you several questions. I'd like you to answer them again by post a comment to this blog post. Please let me know what is the Visual Studio version that you use, who program in native C++ only and who uses also .NET.

 

Thanks again.

 

Alon.

Tomorrow I will give an open house lecture about new features in Visual Studio C++. I will talk a lot about the new Feature Pack as well as other subjects such as C++ 0x and C++/CLI.

This is the agenda:

  • 08:30 – 09:00 Gathering
  • 09:00 – 09:30 Visual Studio Feature Pack – MFC
  • 09:30 – 10:00 Visual Studio Feature Pack – TR1
  • 10:00 – 10:15 Break
  • 10:15 – 11:15 Visual Studio Feature Pack – TR1
  • 11:15 – 11:25 Break
  • 11:25 – 11:45 C++ 0x
  • 11:45 – 12:30 C++/CLI

 

If you are a Windows C++ programmer or a .NET programmer with C++ knowledge, you should be there.

I will post the presentations and demo code after the lecture.

 

Some teasers:

 

The new face of MFC:

image

 

Lambda Expression in C++0x:

[](int x, int y) { return x + y }

 

Functional programming in TR1:

int Add(int a, int b)

{

     return a + b;

}

Function<int(int,int)> a = Add;

cout << a(3,4); //will print 7

 

https://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032380400&culture=he-IL

Posted by Alon Fliess | with no comments