.NET news » Search results

Search results for query "lambda" (5):

Lambda Expressions and Expression Trees: An Introduction

Introduces C# 3's lambda expressions and expression trees in an easy-to-understand way, and describes their benefits and uses. Also touches on anonymous delegates.
2007-03-14 17:58:00   Source: Lambda Expressions and Expression Trees: An Introduction   Tags: C#

New C# 3.0 Language Features

Learn about some of the new features in C# 3.0 including automatic properties, collection initializers, extension methods, lambda expressions and anonymous types.
2008-02-28 14:16:00   Source: New C# 3.0 Language Features   Tags: C#

C# 3.0 Syntax Additions-Design Guidelines

C# 3.0 includes a few syntactical additions to the language. For the most part, Microsoft added these language additions to support Language Integrated Query (LINQ). These features include (but are not limited to) lambda expressions, extensions methods, anonymous types, implicitly typed local variables, automatic properties, and object initializers.
2007-12-27 18:00:00   Source: C# 3.0 Syntax Additions-Design Guidelines   Tags: C#

VB's Statically Typed Wrapper for Dynamic Code

Visual Basic (in some of its forms) has always been Microsoft’s choice in dynamic quarter. With the latest release of Visual Basic 9.0 (comes with Visual Studio 2008), dynamic features of VB have been further improved. So, in VB 9.0 you can use extension methods, local variable type inference, lambda expressions and others that make VB even more dynamic. What’s unique about VB is that dynamic behavior can be controlled with a simple directive..
2008-04-23 22:41:00   Source: VB's Statically Typed Wrapper for Dynamic Code   Tags: VB.NET

Using lambdas for WPF animation

It’s fairly easy to create and animate a graphical primitive, say by moving it from point A to point B at constant speed. But what if you need to position several graphical objects in a particular arrangement and then animate them in a non-linear fashion? Neither Silverlight nor WPF has built-in functions for this. In this article, I’ll demonstrate ways in which one can create objects and animations dynamically using lambda-delegates and higher-order functions.
2010-06-04 11:58:00   Source: Using lambdas for WPF animation   Tags: Graphics WPF
1