cls2deg

Stories submitted by cls2deg

Naming Anonymous Types with Generate from Usage(diditwith.net)

submitted by cls2degcls2deg(1535) 2 years, 7 months ago

Trick for using the new Visual Studio 2010 Generate from Usage feature to convert anonymous types to named types. read more...

add a comment |category: |Views: 7

tags: another

Modifying VB XML Literals at Debug-Time(diditwith.net)

submitted by cls2degcls2deg(1535) 3 years, 3 months ago

Article showing how to change XML literals in the debugger without using Edit and Continue. read more...

add a comment |category: |Views: 4

tags: another

Units of Measure in F#: Part One, Introducing Units(blogs.msdn.com)

submitted by cls2degcls2deg(1535) 3 years, 8 months ago

Part one of Andrew Kennedy's tutorial tackling the new Units of Measure feature of the F# language. read more...

add a comment |category: |Views: 33

tags: another

F# September 2008 CTP Released!(blogs.msdn.com)

submitted by cls2degcls2deg(1535) 3 years, 8 months ago

I’m very pleased to announce the availability of the F# September 2008 CTP Release, launched via the new MSDN F# Developer Center. This release represents an important step in the evolution of the F# language as we progress it towards a fully supported language for the .NET platform. A huge thank you to both the F# team and the community members who've helped us trial earlier versions of this release and given us so much excellent feedback. read more...

add a comment |category: |Views: 164

tags: another

Functional C# - Unfolding Lists(codebetter.com)

submitted by cls2degcls2deg(1535) 3 years, 11 months ago

Very nice post on implementing ideas from functional programming with C#. read more...

add a comment |category: |Views: 353

tags: another

Building Data Out Of Thin Air(diditwith.net)

submitted by cls2degcls2deg(1535) 4 years, 4 months 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: 8

tags: another

Named parameters { Part = 2 }(jacobcarpenter.wordpress.com)

submitted by cls2degcls2deg(1535) 4 years, 6 months ago

Presents a potential solution to the problem with C# 3.0 object initializers and immutable types. Very interesting! read more...

add a comment |category: |Views: 4

tags: another

Named parameters and immutable type initialization(jacobcarpenter.wordpress.com)

submitted by cls2degcls2deg(1535) 4 years, 6 months ago

Interesting article that demonstrates the problem with C# 3.0 object initializers and immutable types. read more...

add a comment |category: |Views: 3

tags: another

F# Resources(diditwith.net)

submitted by cls2degcls2deg(1535) 4 years, 6 months ago

Listing of online resources for learning Microsoft's F# language. read more...

add a comment |category: |Views: 20

tags: another

I'm Really Digging F#(diditwith.net)

submitted by cls2degcls2deg(1535) 4 years, 6 months ago

An article that shows the elegance, power and brevity of Microsoft's F# language. read more...

2 comments |category: |Views: 16

tags: another

Building Functions from Functions: Partial Application(diditwith.net)

submitted by cls2degcls2deg(1535) 4 years, 7 months ago

This is the sixth article in my series on functional programming ideas using C#. As promised, we're digging into partial application to explore more practical applications of currying. read more...

add a comment |category: |Views: 4

tags: another

Visual Basic Envy(diditwith.net)

submitted by cls2degcls2deg(1535) 4 years, 9 months ago

Looks at a LINQ expression feature that Visual Basic .NET 9.0 is geting that C# 3.0 isn't. read more...

add a comment |category: |Views: 1

tags: another

A Higher Calling(diditwith.net)

submitted by cls2degcls2deg(1535) 4 years, 11 months ago

After a long break, it's time to return to my informal series of articles on functional programming concepts using only C# 2.0. This time, I'm looking at the idea of higher-order functions and how to implement Map, Filter and Reduce. read more...

3 comments |category: |Views: 2

tags: another

In Programming, One is The Lonliest Number(codinghorror.com)

submitted by cls2degcls2deg(1535) 4 years, 11 months ago

Jeff Atwood discusses the importance of not being the sole developer on a project. read more...

add a comment |category: |Views: 2

tags: another

Adventures with the Garbage Collector and the JIT Optimizer(diditwith.net)

submitted by cls2degcls2deg(1535) 5 years, 1 month ago

This article delves into a certain peculiarity of the .NET garbage collector. Along the way, it explores IL, optimized JIT-compiled code and even the underlying CLR structures. read more...

add a comment |category: |Views: 4

tags: another

Solving the Problem with Events: Weak Event Handlers(diditwith.net)

submitted by cls2degcls2deg(1535) 5 years, 2 months ago

One of the greatest frustration of working with delegates and events is that they can potentially cause memory leaks if they aren't unhooked. In this article, we will solve this problem in a variety of ways to get the best performance, memory use and syntax. read more...

2 comments |category: |Views: 480

tags: another