Stories recently tagged with 'CLR'

Case of NullReferenceException not handled by sos / windbg (naveensrinivasan.com)

submitted by reshminreshmin(383) 1 year, 11 months ago

Debugging NullReferenceException not handled by sos / windbg read more...

add a comment |category: |Views: 8

tags: another

Get managed call-stacks in .NET for Registry access using ETW(naveensrinivasan.com)

submitted by reshminreshmin(383) 2 years ago

Get managed call-stacks in managed code for Registry access using ETW read more...

add a comment |category: |Views: 4

tags: another

Dynamic Type to do away with Reflection(www.west-wind.com)

submitted by BigTunaBigTuna(219) 2 years ago

Make your reflection code faster and cleaner with the new dynamic type. read more...

add a comment |category: |Views: 18

tags: another

Code Metrics: Number of IL Instructions(weblogs.asp.net)

submitted by gpeipmangpeipman(3145) 2 years ago

In my previous posting about code metrics I introduced how to measure LoC (Lines of Code) in .NET applications. Now let’s take a step further and let’s take a look how to measure compiled code. This way we can somehow have a picture about what compiler produces. In this posting I will introduce you code metric called number of IL instructions. read more...

add a comment |category: |Views: 4

tags: another

String.IsNullOrWhiteSpace() in the .NET 4.0 Framework(c-sharpener.blogspot.com)

submitted by zecanardzecanard(30) 2 years ago

The new String.IsNullOrWhiteSpace() convenience method added in the .NET Framework 4.0 read more...

add a comment |category: |Views: 5

tags: another

params IEnumerable<T>(c-sharpener.blogspot.com)

submitted by zecanardzecanard(30) 2 years ago

When was the last time you needed random-access on a params argument? read more...

add a comment |category: |Views: 6

tags: another

Code Consistency With Asynchronous Exceptions(cuttingedge.it)

submitted by schalkvanwykschalkvanwyk(1335) 2 years ago

Three weeks ago Joe Duffy published an article about 'Monitor.Enter, thread aborts, and orphaned locks' on his blog. After reading this article and responding to it (see my comments), I was pretty much in shock. I came to the conclusion that the C# ‘using’ statement isn't 100% safe. read more...

add a comment |category: |Views: 3

tags: another

A gotcha for those fluent<x> interfaces(codeofrob.com)

submitted by robashtonrobashton(384) 2 years, 1 month ago

A blog entry pointing out an important difference between using straight forward reflection and strongly typed lambdas to retrieve member information read more...

add a comment |category: |Views: 15

tags: another

Exploring SOSEX and Windbg to debug .NET 4.0 (bit.ly)

submitted by reshminreshmin(383) 2 years, 1 month ago

In this post new sosex features are compared with sos. read more...

add a comment |category: |Views: 50

tags: another

Undocumented PSSCOR2 functions « Naveen's Blog(bit.ly)

submitted by reshminreshmin(383) 2 years, 1 month ago

Post outlines few of the undocumented functions in the new PSSCOR2.dll read more...

add a comment |category: |Views: 20

tags: another

Exploring Event Tracing for Windows (ETW) within Task Parallel Library(bit.ly)

submitted by reshminreshmin(383) 2 years, 1 month ago

How to use ETW to get information from Task Parallel Library read more...

add a comment |category: |Views: 152

tags: another

Undocumented Event Tracing for Windows (ETW) providers in .NET 4.0 (bit.ly)

submitted by reshminreshmin(383) 2 years, 1 month ago

This is post describes about some of the new undocumented ETW provider in .NET 4.0 BCL read more...

add a comment |category: |Views: 124

tags: another

Online book fo getting started with F#(www.ctocorner.com)

submitted by tkmageshtkmagesh(10) 2 years, 2 months ago

A good online resource to get started with F# read more...

add a comment |category: |Views: 10

tags: another

Debugging .Net framework source code within Windbg(bit.ly)

submitted by reshminreshmin(383) 2 years, 2 months ago

This post describes the steps to debug the .NET Framework source code using windbg. It also talks about using windbg as integrated debugger. read more...

add a comment |category: |Views: 59

tags: another

An Overview Of System.Collections.Generic(www.codethinked.com)

submitted by justin_etheredgejustin_etheredge(8539) 2 years, 2 months ago

A look at the different collection types in the System.Collections.Generic namespace. read more...

add a comment |category: |Views: 16

tags: another

Creating a basic proxy for intercepting [quick update](weblogs.asp.net)

submitted by mehfuzhmehfuzh(1906) 2 years, 2 months ago

In my previous post, i enhanced the proxy to support generic calls. In order to minimize IL emit and move more parts to managed code, there is a better way to process the return value rather doing the checks against runtime method and see whether the method’s return type is a value or not for generic calls to un-box the object form that is returned from the interceptor. read more...

add a comment |category: |Views: 11

tags: another