Sign in
MSDN Blogs
Microsoft Blog Images
More ...
Blog - Title
MSDN Blogs
>
BCL Team Blog
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
Live Now on Developer Tools Blogs
Tags
.NET Framework 3.5
.NET Framework 4
.NET Framework 4.5
API
BCL Refresher
CodeDom
Contracts
datatype
Generics
Globalization
Immutable
managed
MEF
News
NuGet
parsing
RegEx
Service
Silverlight
System.Collections
System.Diagnostics
System.IO
System.Resources
System.Threading
Win32
More
▼
Less
▲
Related resources
Visual Studio Developer Center
Visual Studio Product Website
Archives
Archives
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
▲
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
BCL Team Blog
PerformanceCounters: single instance, multi-instance and WMI [David Gutierrez]
Posted
over 9 years ago
by
BCL Team
0
Comments
Performance counter categories come in one of two modes: single instance and multi-instance. If you want your category to be visible through WMI, it's important to know the difference. A single instance category has only one machine wide value for each...
BCL Team Blog
ResourceManager & new optimizations for MemoryStream & byte[] [Brian Grunkemeyer]
Posted
over 9 years ago
by
BCL Team
0
Comments
With Whidbey Beta 1, we've done some performance optimizations for Streams & byte[]'s stored in .resources files. The optimizations for byte[]'s are the relatively obvious ones - don't use serialization, etc. The interesting change happened for MemoryStream...
BCL Team Blog
Number Formatting in .NET [Kit George]
Posted
over 9 years ago
by
BCL Team
9
Comments
We get an ongoing number of questions about formatting numbers in .NET. The documentation seems to be notoriously difficult to find. I thought I'd give a quick overview here, with a sample. First note for future reference: to find the write page in the...
BCL Team Blog
Specification for Nullable
[Kit George]
Posted
over 9 years ago
by
BCL Team
8
Comments
I thought I'd make the Nullable specification available to everyone, for reference, and in order to allow you to ask any questions/issues. This is about to go through an ECMA review as well, so it should be interesting to see what their issues/comments...
BCL Team Blog
Normalized paths are tricky [Brian Grunkemeyer]
Posted
over 9 years ago
by
BCL Team
6
Comments
A customer recently asked how to compare to see whether two paths refer to the same file, and he wanted to do this using a canonical path name. This turns out to be a non-trivial problem. Instead of talking about canonical path names which are somewhat...
BCL Team Blog
SerialStream synchronous/asynchronous IO perf tweaks [Ravi Krishnaswamy]
Posted
over 9 years ago
by
BCL Team
1
Comments
In NT, System.IO.Ports.SerialStream synchronous Read()/Write() operations are done asynchronously. That is, for every Read() operation a BeginRead() is issued on a thread-pool thread and an immediate call to EndRead() waits for the operation to complete...
BCL Team Blog
Some meeting notes [Kit George]
Posted
over 9 years ago
by
BCL Team
10
Comments
All, thought I would post some notes from a recent meeting we had with the WebData team. This is in relation to a Tree class they have created internally in their namespaces, and what we should consider doing with it. The reference to 'our redblack' tree...
BCL Team Blog
Cleaning out the attic [Kit George]
Posted
over 9 years ago
by
BCL Team
4
Comments
Well all, I haven't posted for a couple of weeks, and I thought I would share some fun with you, from an exercise we're going through to clean up the libraries before we ship. Of course, we're pretty aggressive about ensuring that we get a bunch of clean...
BCL Team Blog
TechEd '05: what do you want to see? [Kit George]
Posted
over 9 years ago
by
BCL Team
9
Comments
Well, I realize that TechEd '05 is a while off yet, but we're sitting here right now in a planning session, and I realized what I really wanted to know was: what presentations do you, our customers, want to see the most at TechEd? Given that Whidbey will...
BCL Team Blog
New design guideline on evolving names of APIs [Kit George]
Posted
over 9 years ago
by
BCL Team
5
Comments
All, here is a new design guideline we've just added, targetted at resolving whether we should call things 'APINameEx', or 'APIName2', when the name has already been used, but the API can't be changed for breaking change reasons. I'd love any feedback...
BCL Team Blog
Curioddity Number 4: how many strings do I have? [Kit George]
Posted
over 9 years ago
by
BCL Team
8
Comments
Well its time for another curioddity. This one is pretty fun, there's a couple of good sidesteps involved. The following code is gong to write out 3 lines of code to the Console. Your tasks are to: 1: without running the code, write down what you think...
BCL Team Blog
KeyValuePair vs. DictionaryEntry [Krzysztof Cwalina]
Posted
over 9 years ago
by
BCL Team
2
Comments
We discussed a problem with implementation of IEnumerable on Dictionary<K,V>. What type should IEnumerable.GetEnumerator().Current return? KeyValuePair<K,V> or DictionaryEntry? Same for ICollection.CopyTo. Instances of what type should be...
BCL Team Blog
Program Manager Position Announcement [Kit George]
Posted
over 9 years ago
by
BCL Team
2
Comments
All, we have a Program Manager opportunity available on the BCL team, and welcome any interested individuals who meet the requirements of the following job description, to contact Kit George ( kitg@microsoft.com ) for further information. Come work on...
BCL Team Blog
Notes from a design meeting [Kit George]
Posted
over 9 years ago
by
BCL Team
6
Comments
All, we're going to start publishing topics from our design meeting notes. Feel free to send general feedback on the item,or to me directly ( kitg@microsoft.com ). Here's a kick off on Collections: TrimToSize on collections . The basic issue here was...
BCL Team Blog
CuriOddities, part 3 [Kit George]
Posted
over 9 years ago
by
BCL Team
6
Comments
Time for another interesting snippet, in which the code itself doesn't appear bad at first glance, but again: the coder seems to be making an assumption about the way they have constructed the code, which is incorrect. And in fact, it's not an appropriate...
BCL Team Blog
New version of the CodeDOM Test Suite available on the BCL Site [Kit George]
Posted
over 9 years ago
by
BCL Team
0
Comments
Eden Li, an intern at Microsoft for the summer, has just completed and posted an update to the CodeDOM Test Suite , which is available for public download on the BCL MSDN site . This is an excellent update to the suite, and includes all the files necessary...
BCL Team Blog
Webcast: What's New in the CLR 2.0 [Kit George]
Posted
over 9 years ago
by
BCL Team
1
Comments
Just an announcement all: I'm giving a WebCast tomorrow on MSDN, on the topic of 'What's New In The CLR, 2.0'. This cast is similar to presentations I have given at both PDC and TechEd, and will highlight a variety of things the CLR has been working on...
BCL Team Blog
StreamWriter Buffered Data Lost MDA (or a cute finalizer trick) [Brian Grunkemeyer]
Posted
over 9 years ago
by
BCL Team
9
Comments
A somewhat common problem when getting started with developing managed code and using our IO package is forgetting to close a Stream or a StreamWriter. Users who write code like this will be disappointed: void Foo() { StreamWriter sw = new StreamWriter...
BCL Team Blog
CuriOddities (part 2) [Kit George]
Posted
over 9 years ago
by
BCL Team
5
Comments
This week's Curioddity is a result of the way some things in the framework work. I think many of you are going to know the underlying issue here, so I'm going to make it a bit more obscure (not give too much help) to try to keep it interesting. I would...
BCL Team Blog
Curioddities: part 1 (Kit George)
Posted
over 9 years ago
by
BCL Team
9
Comments
Well, I thought I would start a series on interesting things in the framework, and see what people thought about things I find interesting or odd. I'd also love to know what other things you find odd ir interesting that don't happen to come up. For...
BCL Team Blog
New BCL features in Beta1
Posted
over 9 years ago
by
BCL Team
12
Comments
[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...
BCL Team Blog
Why Not Add a New DateTime Date Type in Whidbey?
Posted
over 9 years ago
by
BCL Team
20
Comments
[Anthony Moore] Thanks very much to those who have posted feedback on this issue: http://weblogs.asp.net/bclteam/archive/2004/05/21/136918.aspx This reply to the feedback got quite lengthy, so I started a new entry on it. >> "You COULD...
BCL Team Blog
Changes to Decimal.ToString between V1.0 and V1.1
Posted
over 9 years ago
by
BCL Team
7
Comments
[Anthony Moore] There was a change to Decimal class in V1.1 to preserve trailing zeros in the default foramtting. I thought this was well known, but we just recently got a customer support issue on it. Here is an entry that we will shortly add to the...
BCL Team Blog
DateTime FAQ Entries
Posted
over 9 years ago
by
BCL Team
28
Comments
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...
BCL Team Blog
Obsolete FAQ [Kit George]
Posted
over 9 years ago
by
BCL Team
0
Comments
I recently published a faq with details about how the framework approaches the concept of deprecation, and making APIs obsolete: http://www.gotdotnet.com/team/changeinfo/V2.0/obsoletefaq.aspx I'd love any feedback or questions you have related to...
Page 11 of 13 (310 items)
«
9
10
11
12
13