Sign in
MSDN Blogs
Microsoft Blog Images
More ...
Browse by Tags
MSDN Blogs
>
BCL Team Blog
>
All Tags
>
managed
Server & Tools Blogs
>
Developer Tools Blogs
>
Base Class Library Blog
Executive Bloggers
S. Somasegar
Brian Harry
Scott Guthrie
Jason Zander
Visual Studio
Visual Studio
Blend
LightSwitch
Line of Business Apps by Beth Massi
Setup & Install by Heath Stewart
Application Lifecycle Management
Visual Studio ALM
Team Foundation Service
Languages
Visual Basic
Visual C#
Visual C++
Visual F#
JavaScript
.NET Framework
.NET Framework
.NET Parallel Programming
ADO.NET (Managed Providers, DataSet & EF)
ASP.NET by Scott Hanselman
Base Class Library (BCL)
Silverlight
WCF Data Services
Workflow
Platform Development
Internet Explorer
Apps for Office and SharePoint 2013
SharePoint
Office
Web
Windows 8
Windows Store
Windows Azure
Windows Phone
Base Class Library (BCL) Blog
Base types, Collections, Diagnostics, IO, RegEx…
Subscribe
Comments
Contact
Menu
Blog Home
Atom
Translate this page
Powered by
Microsoft® Translator
Recent Posts
Portable HttpClient is now available as RC
Posted
1 hour ago
by
Immo Landwerth [MSFT]
0
Comments
Social Engineering
Posted
29 days ago
by
Immo Landwerth [MSFT]
0
Comments
Microsoft.Bcl.Async is Now Stable
Posted
1 month ago
by
Immo Landwerth [MSFT]
46
Comments
Inner Workings of Immutable Collections on Channel 9
Posted
2 months ago
by
Immo Landwerth [MSFT]
2
Comments
Live Now on Developer Tools Blogs
Tags
API
datatype
Generics
News
parsing
System.Collections
System.Diagnostics
System.IO
System.Resources
System.Threading
Win32
Related resources
Visual Studio Developer Center
Visual Studio Product Website
Archives
Archives
May 2013
(1)
April 2013
(2)
March 2013
(2)
February 2013
(1)
January 2013
(1)
December 2012
(1)
October 2012
(1)
August 2012
(1)
June 2012
(2)
May 2012
(2)
April 2012
(2)
March 2012
(1)
December 2011
(2)
November 2011
(4)
October 2011
(2)
June 2011
(1)
May 2011
(2)
April 2011
(2)
March 2011
(1)
January 2011
(1)
November 2010
(1)
October 2010
(1)
August 2010
(1)
July 2010
(1)
June 2010
(2)
May 2010
(1)
April 2010
(1)
March 2010
(1)
January 2010
(1)
November 2009
(1)
October 2009
(1)
August 2009
(1)
July 2009
(2)
June 2009
(1)
May 2009
(1)
February 2009
(3)
January 2009
(1)
November 2008
(2)
October 2008
(2)
July 2008
(1)
June 2008
(3)
May 2008
(1)
April 2008
(1)
January 2008
(1)
November 2007
(4)
October 2007
(2)
August 2007
(3)
July 2007
(3)
June 2007
(7)
May 2007
(5)
April 2007
(4)
March 2007
(2)
February 2007
(1)
January 2007
(2)
December 2006
(1)
November 2006
(2)
October 2006
(8)
September 2006
(2)
August 2006
(3)
July 2006
(7)
June 2006
(5)
May 2006
(11)
April 2006
(16)
March 2006
(1)
January 2006
(1)
October 2005
(6)
September 2005
(5)
August 2005
(3)
July 2005
(2)
June 2005
(5)
April 2005
(3)
March 2005
(41)
February 2005
(7)
January 2005
(4)
December 2004
(8)
November 2004
(14)
October 2004
(9)
September 2004
(6)
August 2004
(6)
July 2004
(1)
June 2004
(2)
May 2004
(3)
March 2004
(2)
January 2004
(15)
December 2003
(3)
November 2003
(9)
October 2003
(5)
More
▼
Less
▲
Tagged Content List
Blog Post:
Hardening Server Applications [Immo]
BCL Team
From time to time a company ships a product that has a huge impact on their ecosystem. A good example for us is certainly .NET. The biggest value proposition that managed code has is that it is, well, managed code. The CLR provides runtime management components such as a garbage collector or reflection...
on
1 Apr 2011
Blog Post:
New Performance Counter Features [Ryan Byington]
BCL Team
Introduction Before going into detail of the changes in v2.0 I think it is important to start off with explaining the existing problems with the performance counter infrastructure. The first problem is the memory reserved for performance counters is fixed, though the initial size of the memory can be...
on
16 Mar 2005
Blog Post:
Cross Version Serialization Broken between V1.1 and V2.0 [Ryan Byington]
BCL Team
In V2.0 we sometimes needed to add fields to types that existed in V1.1. If this type just has the Serializable attribute applied to it this will break serialization compatibility with V1.1. Currently when 1.1 tries to deserialize an instance with this new field it will throw an exception the runtime...
on
16 Mar 2005
Blog Post:
How to get .NET Framework Design Guidelines Updates [Krzysztof Cwalina]
BCL Team
The .NET Framework Design Guidelines on MSDN are getting updated but not that frequently. Many people have asked us to publish updates more often. I have been posting such updates here for some time now. Yesterday, I added new guidelines for throwing exceptions . Happy reading.
on
16 Mar 2005
Blog Post:
Why System.Collections.ObjectModel namespace? [Krzysztof Cwalina]
BCL Team
Many people ask about why Collection, ReadOnlyCollection, and KeyedCollection were moved to System.Collections.ObjectModel namespace. You can read the reasoning here .
on
16 Mar 2005
Blog Post:
PowerCollections MSDN TV Broadcast [Krzysztof Cwalina]
BCL Team
Have you heard about PowerCollections ? It’s an extension library to the new generic collection classes in the System.Collections.Generic namespace. It contains many advanced collections and a ton of algorithms. You can also watch an MSDN TV broadcast where Peter Golde describes the project details ...
on
16 Mar 2005
Blog Post:
Play the CLR acronym game! [Brad Abrams]
BCL Team
One of my pet peeves is seeing people use obscure managed code related terms incorrectly. So, I thought I’d make a little game out of it… Can you match the term to their usage correct? Terms: CLR CLS CTS CLI CER Fill in the blank: The __ is a contract between language vendors and framework authors that...
on
16 Mar 2005
Blog Post:
Avoiding Boxing in Classes Implementing Generic Interfaces through Reflection [Dave Fetterman]
BCL Team
Krzysztof Cwalina showed me this cool trick to avoid boxing value types when working with generics and interfaces. This may be a bit dense but the trick is rarely seen and illustrative. Note before proceeding: This technique is only available in VS.NET Whidbey. For the sake of illustration, suppose in...
on
15 Mar 2005
Blog Post:
Potential additions to the Math class [Katy King]
BCL Team
In preparation for the next version of the product, we've collected suggestions for additions to the Math class and related classes. To give you an idea of the kinds of things people ask us for, here are a list of some of the requests we've received. We’re curious to know which of these (if any) seem...
on
15 Mar 2005
Blog Post:
Writing a Useful Windows Service in .NET in Five Minutes [Dave Fetterman]
BCL Team
When opening up a new project in Visual Studio, one finds many, many options for deploying your new killer app: Windows Applications, Console Applications, and Web Services are all popular choices. Even when creating a simple daemon-type process, however, the Windows Service option is likely overlooked...
on
15 Mar 2005
Blog Post:
How to Work Around Problems Serializing DateTime in XML [Anthony Moore]
BCL Team
I wrote a while ago about problems with the way DateTime worked with features like DataSet, XML Serialization (WebServices) and XmlConvert. Basically, DateTime is always treated as a local time by these XML-based systems, which means that you get incorrect results if you use UTC or whole dates with them...
on
7 Mar 2005
Blog Post:
Dead C Hacks: Reallocating or Changing an object's type in place in .NET? [Brian Grunkemeyer]
BCL Team
I was recently asked if there was a way to reallocate an object on top of another one, or to change the type of an object at runtime. This must have been a somewhat common practice in native C or C++ programs, perhaps something that C++'s placement new facilitated. I'm not a big fan of the idea in general...
on
2 Dec 2004
Blog Post:
.NET Arrays, IList<T>, Generic Algorithms, and what about STL? [Brian Grunkemeyer]
BCL Team
When we were designing our generic collections classes, one of the things that bothered me was how to write a generic algorithm that would work on both arrays and collections. To drive generic programming, of course we must make arrays and generic collections as seamless as possible. It felt that there...
on
19 Nov 2004
Blog Post:
New BCL features in Beta1
BCL Team
[Ahmed AbouTaleb] Here is a list of all the new BCL features that shipped in Visual studio 2005 Beta1 Regular Expressions We added the ability to use character class subtraction to regular expressions. The specification is publicly available here . Compression Support We have added...
on
29 Jul 2004
Blog Post:
DateTime FAQ Entries
BCL Team
I have recently created some new DateTime FAQ entries to address some questions people have about using DateTime on blogs. Our web site is in transition, so I'm posting some of these into the blog. However, they will eventually be rolled into the DateTime FAQ on the BCL web site. Why is DateTime not...
on
21 May 2004
Blog Post:
A query about providing more managed solutions [Kit George]
BCL Team
In a post to the BCL Website question page, nfactorial inquired if there is a timeline by which the BCL (and the .NET Framework in general) intends to have full support for unmanaged APIs? Nfactorial, we plan ot continue to expand the framework to have more and more managed solutions, and Longhorn...
on
2 Dec 2003
Page 1 of 1 (16 items)