Sign in
MSDN Blogs
Microsoft Blog Images
More ...
Blog - Title
May, 2006
MSDN Blogs
>
BCL Team Blog
>
May, 2006
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
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
▲
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
BCL Team Blog
Meet the BCL team [KathyKam]
Posted
over 7 years ago
by
BCL Team
0
Comments
Monday was a holiday, so no one was around to post anything. :( Instead, I'll share this off-topic news with our readers. BCL just got our MSDN and GotDotNet page updated. MSDN: http://msdn.microsoft.com/netframework/programming/bcl/BCLTeam.aspx...
BCL Team Blog
SerialPort Encoding [Ryan Byington]
Posted
over 7 years ago
by
BCL Team
6
Comments
The SerialPort class uses the encoding specified by the SerialPort.Encoding property to convert strings and character arrays to bytes to send across the serial port. This encoding also gets used when reading from the serial port to convert bytes received...
BCL Team Blog
Why does Double.Parse(Double.MaxValue.ToString()) not work? [Anthony Moore]
Posted
over 7 years ago
by
BCL Team
1
Comments
System.Double and System.Single are have inexact precision of decimal digits because internally they are a floating point binary number. As such, beyond a certain number of significant digits, their decimal representation becomes approximate. The standard...
BCL Team Blog
Generic List enumerator order [Vance Morrison]
Posted
over 7 years ago
by
BCL Team
1
Comments
“Is the order returned by the List<T> enumerator guaranteed to be the same as looping through with a for loop?” Since foreach is actually defined in terms of looping over the ‘MoveNext’ operation of the enumerator, foreach is guaranteed to be...
BCL Team Blog
SerialPort and DataReceived Event [Ryan Byington]
Posted
over 7 years ago
by
BCL Team
2
Comments
I have seen a few customers complain that their DataReceived event handler was never getting called and I thought I would share their problems here so you can learn from their mistakes. The problems revolve around the port not being open. This is sometimes...
BCL Team Blog
Testing the Base Class Library [Lakshan Fernando]
Posted
over 7 years ago
by
BCL Team
1
Comments
The test role at Microsoft generally and in the BCL team specifically is somewhat different from a traditional test position in the software industry. We release software for developers and the test team considers themselves as frontline developers that...
BCL Team Blog
Using a MemoryStream with GZipStream [Lakshan Fernando]
Posted
over 7 years ago
by
BCL Team
8
Comments
We’ve seen cases where our customers have run into issues when using a MemoryStream with GZip compression. The problem can be frustrating to debug and I thought I’ll blog about it in the hope that others would avoid a similar issue. The code for this...
BCL Team Blog
Breaking changes and the BCL [Ari Weinstein]
Posted
over 7 years ago
by
BCL Team
7
Comments
One of the areas that I have been involved in for the past half year is application compatibility. Since then I have a number of emails from our .NET 2.0 compatibility alias ( netfxcmp@microsoft.com -let us know if you have any compat questions!) with...
BCL Team Blog
Using FileStream from Restricted User Accounts [Josh Free]
Posted
over 7 years ago
by
BCL Team
5
Comments
Every so often, I run into code that requests security permissions that are not needed. Take the following code snippet as an example: // open the file for reading FileStream fs1 = new FileStream ( @"C:\Program Files\SomeFile.bin...
BCL Team Blog
Set Collection [Ryan Byington]
Posted
over 7 years ago
by
BCL Team
17
Comments
So the BCL thinking of implementing a set collection for a future release and we would like to get you our blog reading public opinion on what scenarios are important to you for a Set collection. The collection will likely have the standard ICollection<T>...
BCL Team Blog
Reading a file in Managed Code [Lakshan Fernando]
Posted
over 7 years ago
by
BCL Team
2
Comments
Some of our new users to managed code take a little time to get used to the design pattern in reading a file. I thought I’ll enumerate through the most common patterns for their benefit; Reading from a FileStream : Create a suitable buffer size...
Page 1 of 1 (11 items)