Latest CLR stories

FxCop This(nervoustych.com)

submitted by jburgerjburger(815) 4 years, 10 months ago

A summary on creating, deploying and debugging fxcop rules. read more...

1 comment |category: |Views: 17

tags: another

Top 20 .NET Garbage Collection Articles(drowningintechnicaldebt.com)

submitted by dbottjerdbottjer(310) 4 years, 11 months ago

Ah. Garbage Collection... how I love and hate thee. =P I think one sad thing about programming in .net is that it seems many developers don't know or care anything about garbage collection and memory management. You used to *have* to know about it in order to write bug free code. I suppose it is a two edge sword in that developers can develop faster as the intention was to relieve developers of the need to know or care anything about memory management. I personally have always tried to follow best practices for implementation and have tried to stay somewhat cautious of issues related to memory. I've been fortunate in never really having any memory management related issues in my previous applications. However, there, but for the grace of God, I too could go. read more...

add a comment |category: |Views: 15

tags: another

I CAN HAS A .NET COMPILR?(sorn.net)

submitted by jaavaagurujaavaaguru(260) 4 years, 11 months ago

A programming language with compilers for many platforms including .NET, based on the captions featured in the popular LOLCat images found in the Internet. read more...

add a comment |category: |Views: 1

tags: another

Serious bug in String.IsNullOrEmpty in the .NET 2.0 CLR(sorn.net)

submitted by jaavaagurujaavaaguru(260) 4 years, 11 months ago

A bug has been discovered in Microsoft's .NET 2.0 runtime which can cause an unexpected null reference exception at runtime. This article sums up what's affected and what isn't, and links to a bug report on Microsoft's website stating that it will only be fixed in the beta release of the next CLR. The developer community are not impressed. read more...

1 comment |category: |Views: 60

tags: another

String.IsNullOrEmpty can lead to runtime Null exceptions!(msmvps.com)

submitted by .NetKicks.NetKicks(1304) 4 years, 11 months ago

The author shows a flaw in String.IsNullOrEmpty of the .NET 2.0. Microsoft replies that this bug won't be fixed until Orcas. (see bug report at: http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=113102 ) read more...

3 comments |category: |Views: 15

tags: another

Working With Asynchronous WebRequests(vaultofthoughts.net)

submitted by mikeonmikeon(5200) 4 years, 11 months ago

Do you knowh how to handle multiple asynchronous WebRequests? Do you know why the obvious way doesn't work? read more...

add a comment |category: |Views: 23

tags: another

Strength In Numbers(codeassassin.com)

submitted by jburgerjburger(815) 4 years, 11 months ago

Reasons why strong naming your assemblies, should be the rule, rather than the exception. read more...

add a comment |category: |Views: 4

tags: another

The Most Useful .NET Utility Classes Developers Tend To Reinvent Rathe(haacked.com)

submitted by jburgerjburger(815) 4 years, 11 months ago

Useful framework tips on paths from Phil Haack. read more...

1 comment |category: |Views: 30

tags: another

Aspects the MS way(lowendahl.net)

submitted by lowendahllowendahl(750) 4 years, 11 months ago

Microsoft is constantly bashing aspects but have used similar techniques for their own frameworks and are pursuing the same benefits with other approaches. This post talks in lenght about those efforts and why MS just should give up and go Aspects already. read more...

add a comment |category: |Views: 7

tags: another

New "Orcas" Language Feature: Anonymous Types - ScottGu's Blog(weblogs.asp.net)

submitted by crpietschmanncrpietschmann(11.3k) 5 years ago

Anonymous types are a convenient language feature of C# and VB that enable developers to concisely define inline CLR types within code, without having to explicitly define a formal class declaration of the type. Anonymous types are particularly useful when querying and transforming/projecting/shaping data with LINQ. read more...

add a comment |category: |Views: 15

tags: another

John Lam Talks About the Dynamic Language Runtime wi(blogs.msdn.com)

submitted by crpietschmanncrpietschmann(11.3k) 5 years ago

John Udell has just posted a podcast with John Lam from the Dynamic Languages team at Microsoft that they recorded last week. John Lam was the creator of RubyCLR before he was hired by Microsoft last year. Since that time, Lam's been working in secrecy on what is now known as the DLR. read more...

add a comment |category: |Views: 6

tags: another

CLR To Be Cross-Platform(blogs.zdnet.com)

submitted by senfosenfo(881) 5 years ago

"The CLR is fast, efficient, widespread, and now it runs on the Mac as a web browser plugin while using XAML for the presentation layer. That means you can write C# and VB Rich Internet Applications that will run cross platform." read more...

add a comment |category: |Views: 0

tags: another

A Dynamic Language Runtime (DLR)(blogs.msdn.com)

submitted by crpietschmanncrpietschmann(11.3k) 5 years ago

Today, at MIX 07, we announced a new level of support for dynamic languages on .NET that we're calling the DLR. The DLR is about giving you the best experience for your language - true to the language, excellent tools, performance and seamless integration with a wealth of libraries and platforms. The essential benefits of the DLR are about sharing. It lets language implementers share standard features rather than rebuilding them from scratch. read more...

add a comment |category: |Views: 11

tags: another

100% Reflective Class Diagram Creation Tool(codeproject.com)

submitted by jiltedcitizenjiltedcitizen(563) 5 years ago

This article is about using reflection. For those of you that don't know what reflection is, it is the ability to obtain information about a Type of object without really knowing anything about the object type that is being dealt with. For example one could simply ask the current Type of object if it supports a certain method name, if it does, the method can be called. This may sound strange but it is a very powerful technique. Lets suppose that I simply want to look at what methods a class supports, well that is also easily achieved using reflection. .NET allows developers to leverage reflection in many ways. read more...

add a comment |category: |Views: 30

tags: another

Microsoft to roll out dynamic-language layer for .Net(blogs.zdnet.com)

submitted by gavinjoycegavinjoyce(25.7k) 5 years ago

"Microsoft is readying a new software layer designed to allow dynamic languages to integrate more easily and tightly with its .Net Framework, according to sources. Microsoft is aiming to unveil the new technology — which it may christen as the "Dynamic Language Runtime" (DLR) — at its Mix '07 conference, which kicks off on April 30 in Las Vegas, sources added." read more...

add a comment |category: |Views: 3

tags: another

Basic but effective .NET interviews questions(buunguyen.net)

submitted by qn111qn111(575) 5 years ago

Some interesting .NET interview questions which can eliminate quite a number of candidates read more...

1 comment |category: |Views: 26

tags: another