Latest C++ stories

C++ Little Wonders: The C++11 auto keyword redux(www.blackrabbitcoder.net)

submitted by BlackRabbitCoderBlackRabbitCoder(661) 2 months, 12 days ago

Today I’m going to focus on a new feature in C++11 (formerly known as C++0x, which is a major move forward in the C++ language standard). While this small keyword can seem so trivial, I feel it is a big step forward in improving readability in C++ programs. read more...

1 comment |category: |Views: 87

tags: another

Rx and Time related operators(blogs.microsoft.co.il)

submitted by bnayabnaya(431) 3 months, 14 days ago

Rx and Time related operatorsRx and Time related operators this post will focus on Rx's time related operators. Rx has lot to do with the time notion. actually Rx is kind of a time machine where datum does schedule for processing at specific time (I will talk about scheduling in future post). within the System.Reactive and System.Reactive.Linq namespaces we can find the following extension method and services. Window, Buffer and Sample which was spoken here, here and here. all operators has ... read more...

add a comment |category: |Views: 86

tags: another

Why IL? - Fabulous Adventures In Coding - Site Home - MSDN Blogs(blogs.msdn.com)

submitted by NoldorinNoldorin(829) 6 months, 6 days ago

Eric Lippert discusses the role of the Intermediate Language versus Low-Level Virtual Machines in terms of the implementation of Roslyn. read more...

2 comments |category: |Views: 24

tags: another

Partial Application(www.kodefuguru.com)

submitted by KodefuGuruKodefuGuru(2818) 6 months, 12 days ago

Functions have a given number of arguments which define the arity of the function. The process of producing another function by setting any number of arguments to a function is known as partial application. C# developers are most familiar with this concept by calling one method from a more specific method, thereby adhering to the DRY principle. read more...

add a comment |category: |Views: 48

tags: another

Announcing Wrox's Professional C++, 2nd Edition(blogs.msdn.com)

submitted by rcashrcash(4149) 7 months, 16 days ago

This second edition includes the latest C++ standard, C++11, and is based on the great first edition written by Nicholas A. Solter, Scott J. Kleper. The book is published by Wiley/Wrox. read more...

5 comments |category: |Views: 26

tags: another

GoingNative 2: C++ at BUILD, Windows Runtime Library(WRL)(channel9.msdn.com)

submitted by rcashrcash(4149) 7 months, 25 days ago

Also an interesting podcast discussing in depth the new Windows 8 from a developers point of view and what advantages that exibits for C++ developers. read more...

add a comment |category: |Views: 19

tags: another

Why C++ matters?(geekswithblogs.net)

submitted by rcashrcash(4149) 8 months, 19 days ago

Why does C++ really matter anymore? This article discusses the advantages of using C++ with mobile platforms and datacenters in order to create more efficient programs that save money and resources. read more...

3 comments |category: |Views: 58

tags: another

C++ and Beyond 2011(channel9.msdn.com)

submitted by rcashrcash(4149) 8 months, 22 days ago

In this podcast, we meet Sean Gibb, Director of Software at Rad3 Communications. He's an expert C++ developer (and human template debugger, it turns out ). read more...

add a comment |category: |Views: 25

tags: another

How To Build A Simple Text Editor? A Tutorial(www.codeproject.com)

submitted by rcashrcash(4149) 9 months, 19 days ago

This article depicts the application of ATL/WTL by constructing a simple text editor based on the WTL objects read more...

2 comments |category: |Views: 46

tags: another

C#/.NET Little Pitfalls: Default Parameters are Compile-Time Substitut(blackrabbitcoder.net)

submitted by rcashrcash(4149) 9 months, 26 days ago

This is the fifth post pointing out the pitfalls that come with C#. Although C# is a very powerful programming language, it's easy for developers to lose sight of what's really going on behind the scenes. Some awareness concerning this can avoid these pitfalls. read more...

1 comment |category: |Views: 30

tags: another

50+ Great Free Tools for .NET Developers(www.devproconnections.com)

submitted by rcashrcash(4149) 10 months, 2 days ago

A cross section of some of the most popular free tools for .NET Developers from the following categories - Code-generation/editing/templates, Content management systems (CMSs), Controls/Components, Data access and Object-Relational Mapping (ORM), Documentation & Project Management, Performance Analysis/Management, Software Configuration Management/Version Control, Testing and Debugging, Visual Studio add-ins. read more...

1 comment |category: |Views: 135

tags: another

Implicit and Explicit Type Conversions/Type Casting (toptechsolutions.blogspot.com)

submitted by SadiaAzizSadiaAziz(125) 1 year, 1 month ago

Implicit type conversion, also known as coercion, is an automatic type conversion by the compiler. Some languages allow, or even require, compilers to provide coercion. In a mixed-type expression,... read more...

add a comment |category: |Views: 15

tags: another

MultiTouch Capabilities in Windows 7(blogs.msdn.com)

submitted by zhimingzhiming(1135) 2 years, 5 months ago

Yochay Kiriaty, Technical Evangelist at Microsoft, in this MSDN article provides a great overview of multitouch capabilities of Windows 7 from the perspective of both user interface and programming models. Though containing some C++ code snippets, is is a great article to read if you want to understand, without spending much time, what the Windows 7 multitouch platform is and how it works. read more...

1 comment |category: |Views: 72

tags: another

Windows 7 Books for Developers and Administrators(blogs.msdn.com)

submitted by zhimingzhiming(1135) 2 years, 6 months ago

Microsoft Press has recently released "Introducing Windows 7 for Developers". Samples are presented in C++ and C# managed code. See the table of contents below. read more...

2 comments |category: |Views: 130

tags: another

Windows 7 Touch Deep Dive Session at PDC09(blogs.msdn.com)

submitted by zhimingzhiming(1135) 2 years, 6 months ago

Check out Reed Townsend’s Windows 7 touch deep dive session at PDC. This session is targeted at developers interested in building touch-optimized experiences. Plenty of C++ code. You can watch the presentation online or download the presentation file (ppt) and video here. read more...

add a comment |category: |Views: 27

tags: another

Taking a look at the AAA syntax in RhinoMocks 3.5(dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 3 years, 9 months ago

A short screencasts where we look at the AAA (Arrange, Act, Assert) syntax in RhinoMocks 3.5. read more...

add a comment |category: |Views: 200

tags: another