Stories recently tagged with 'C#3.0' Subscribe to this feed

Functionally Dynamic? (www.lostechies.com)

submitted by RainerSchusterRainerSchuster(30) 1 year, 2 months ago

A simple (weird looking) functional programming pattern used in todays c# read more...

add a comment | category: | Views: 15

tags: another

Lists: Filter, Map and Reduce - and the Magic of IEnumerator. (honestillusion.com)

submitted by JamesCurran2JamesCurran2(110) 1 year, 5 months ago

There are 3 very handy list functions which make dealing with lists a breeze: Map, Filter and Reduce. But along the way of writing them, an important principle of IEnumerator<> comes up. read more...

add a comment | category: | Views: 35

tags: another

Object and Collection Initializers Feature in C# 3.0 (www.techbubbles.com)

submitted by kalyanms1kalyanms1(1020) 1 year, 6 months ago

C# 3.0 introduced the another interesting feature Object and Collection initialization expressions. Object Intialization Expressions allows you to initialize an object without invoking the constructor and setting its properties. If you take Employee Class as an Example: read more...

add a comment | category: | Views: 13

tags: another

Dynamic Data Access with LINQ (www.michaelckennedy.net)

submitted by mkennedy66996693mkennedy66996693(460) 1 year, 7 months ago

When I talk about LINQ people often ask whether it’s possible to have dynamic queries with LINQ. An example of this is presenting the user with a UI that allows them to optionally filter by some criteria or other and sort by some criteria. This was straightforward if you built-up a SQL string in code. The compiled, static nature of LINQ makes this appear difficult at first. They are not and this video and sample application shows you how to accomplish just this. read more...

1 comment | category: | Views: 31

tags: another

LINQ-to-Console (blog.functionalfun.net)

submitted by samuel_d_jacksamuel_d_jack(415) 1 year, 9 months ago

Using a LINQ query to sanitise user's input from the console. read more...

add a comment | category: | Views: 4

tags: another

LINQ & Lambda (vijay.screamingpens.com)

submitted by CVertexCVertex(325) 1 year, 9 months ago

An innocent, unbeknownst programmer is possessed by the demons of C# 3. How is this young coder going to deal with his exposure to some dark and evil forces? read more...

add a comment | category: | Views: 11

tags: another

Mapping options in LINQ to SQL (www.lostechies.com)

submitted by powerrushpowerrush(3754) 1 year, 10 months ago

It turns out there are four (count 'em, four) ways of mapping your LINQ to SQL entities DTO's: VS designer (.dbml) Command-line SqlMetal tool Hand-coded with attributes Hand-coded with external XML files read more...

add a comment | category: | Views: 8

tags: another

To var or not to var... (davesquared.blogspot.com)

submitted by hassan_sthassan_st(10) 1 year, 11 months ago

C# 3.0 feature read more...

add a comment | category: | Views: 4

tags: another

C# 3.0, Parallel LINQ, And The Betfair API - An Introduction (basildoncoder.com)

submitted by covertbadgercovertbadger(25) 1 year, 11 months ago

A look at how PLINQ can simplify some aspects of asynchronous programming. read more...

add a comment | category: | Views: 269

tags: another

Video of Luke Hoban's In-Depth Look at C# 3.0 (blogs.msdn.com)

published 1 year, 11 months ago, submitted by CharlieCalvertCharlieCalvert(7835) 1 year, 11 months ago

Last fall in Barcelona, Spain two PM's from the C# team gave talks on key parts of the new technology found in Visual Studio 2008. * Microsoft Visual C# Under the Covers: An In-Depth Look at C# 3.0 * LINQ to SQL: Accessing Relational Data with Language Integrated Query read more...

add a comment | category: | Views: 365

tags: another

Exploring C# 3.0 (visualstudiomagazine.com)

submitted by JemmJemm(9400) 1 year, 11 months ago

Many of the compiler changes in C# 3.0 were driven by Language Integrated Query (LINQ), but the changes to C# 3.0 are important in their own right because they can enhance your code tremendously. read more...

add a comment | category: | Views: 10

tags: another

Statically-typed reflection with LINQ (www.clariusconsulting.net)

submitted by atifazizatifaziz(990) 2 years ago

Daniel Cazzulino on an interesting approach to strong-typed reflection using LINQ expression trees. He also makes an API available on a CodePlex project (http://www.codeplex.com/clarius). read more...

add a comment | category: | Views: 4

tags: another

C# Debugging Improvements for VS 2008 SP1- Part 1 (blogs.msdn.com)

submitted by SreekarSreekar(200) 2 years ago

Over the past few months I have been busy closing VS 2008 and working on some fixes for SP1. We have enabled some key debugging scenarios in C# in VS 2008 SP1, they include support for Range Variables in Queries & Anonymous Types Generic Type arguments Covering all of them was making the post long so i am going to discuss Range variables this time and continue on with the other 2 in the next post. read more...

add a comment | category: | Views: 29

tags: another

A command line interface base class (vijay.screamingpens.com)

published 2 years, 1 month ago, submitted by CVertexCVertex(325) 2 years, 1 month ago

A simple base class so you don't have to write any more command line processing loops. read more...

1 comment | category: | Views: 9

tags: another

Building Data Out Of Thin Air (diditwith.net)

published 2 years, 1 month ago, submitted by cls2degcls2deg(1515) 2 years, 1 month ago

A wild ride through theoretical implementations of Cons, Car and Cdr in Scheme, followed by implementations in C# 3.0 and VB 9. Guaranteed to stretch your mind. read more...

2 comments | category: | Views: 4

tags: another

Joins - LINQ's critical, overlooked feature. (honestillusion.com)

submitted by JamesCurran2JamesCurran2(110) 2 years, 1 month ago

Joins are a vital part of SQL -- but most ORM ignore them -- except for LINQ. read more...

add a comment | category: | Views: 4

tags: another