Sign in
MSDN Blogs
Microsoft Blog Images
More ...
Blog - Title
November, 2004
MSDN Blogs
>
BCL Team Blog
>
November, 2004
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
New MSIL & Subset CodeDom Provider samples [Peter Drayton]
Posted
over 9 years ago
by
BCL Team
2
Comments
There's a fair bit written about using CodeDom, but samples showing how to implement your own provider have been quite thin on the ground . Fortunately Eden Li , a CLR intern this summer, produced a couple of useful CodeDom provider samples now live on...
BCL Team Blog
Issues with Console APIs when stdout is redirected to a file [Ravi Krishnaswamy]
Posted
over 9 years ago
by
BCL Team
5
Comments
When you redirect stdout of your consoleapp to a file, you can expect that a number of Console APIs won't work quite right. For ex, MoveBufferArea is an obvious candidate of something that can't be supported. In this situation you will get an IOException...
BCL Team Blog
Amusing thoughts before the holidays [Kit George]
Posted
over 9 years ago
by
BCL Team
2
Comments
We happened to discuss the new naming guideline for generics today, and for whatever reason, or discussion turned to some of the more interesting, and amusing names that could be designed around the decision to use a named generic argument, preceeded...
BCL Team Blog
Some updated FAQs available on our website
Posted
over 9 years ago
by
BCL Team
0
Comments
Anthony Moore has updated the Numeric Types FAQ, and the Date and Time FAQ on our webiste. Check out the new FAQs at http://msdn.microsoft.com/netframework/programming/bcl/FAQ/ . Note also that if you'd like to see questions answered in these FAQs, just...
BCL Team Blog
.NET Arrays, IList<T>, Generic Algorithms, and what about STL? [Brian Grunkemeyer]
Posted
over 9 years ago
by
BCL Team
4
Comments
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...
BCL Team Blog
Array.IndexOf performance caveat[Gang Peng]
Posted
over 9 years ago
by
BCL Team
1
Comments
Array.IndexOf are “generic” methods to search for an item in an one dimensional array. However since they are generic, there are some performance caveats. Array.IndexOf handles arrays in three different ways: (1) If the array is a SZArray (one dimensional...
BCL Team Blog
Path.GetDirectoryName [Ravi Krishnaswamy]
Posted
over 9 years ago
by
BCL Team
2
Comments
Clarifying the behavior of Path.GetDirectoryName. This is a convenient string parsing method to get the directory path of a file path. It validates neither the given file path nor the returned directory path. This method merely removes the last element...
BCL Team Blog
Regular Expression performance [David Gutierrez]
Posted
over 9 years ago
by
BCL Team
7
Comments
I often get questions about Regex and what the RegexOptions.Compiled flag actually does. There are in fact three different modes that Regex can work in: interpreted (without the compiled flag), compiled on the fly (with the compiled flag), and precompiled...
BCL Team Blog
An interesting discussion around a particular Breaking Change: the verdict [Kit George]
Posted
over 9 years ago
by
BCL Team
0
Comments
Well, I wasn't prepared for the wealth of responses and I can tell you, we absolutely appreciate it. It's great to see a bit of passion around this kind of subject. Result : we're going to say the change is acceptable. We were already leaning towards...
BCL Team Blog
Ye' old BCL Dev discusses our classes on .NET Rocks [Kit George]
Posted
over 9 years ago
by
BCL Team
2
Comments
Jay Roxe used to work on the BCL team as the dev lead, and has a lot of excellent historical knowledge about fundamental classes. He recently gave an interview on .NET Rocks , in which he discusses a wide variety of things, including touching on the internals...
BCL Team Blog
An interesting discussion around a particular Breaking Change [Kit George]
Posted
over 9 years ago
by
BCL Team
13
Comments
So an interesting situation arose today I though I would share with everyone. I'd love your input on this issue as well, if you feel strongly one way or the other. Curiously, the C# compiler (at least) allows you to write the following code: public abstract...
BCL Team Blog
An interesting discussion around a particular Breaking Change [Kit George]
Posted
over 9 years ago
by
BCL Team
26
Comments
So an interesting situation arose today I though I would share with everyone. I'd love your input on this issue as well, if you feel strongly one way or the other. Curiously, the C# compiler (at least) allows you to write the following code: public abstract...
BCL Team Blog
Base Class Program Manager position still available [Kit George]
Posted
over 9 years ago
by
BCL Team
0
Comments
Just wanted to quickly let you know the BCL job opening is still available. There's actually 2 or 3 openings within the CLR at the moment so if you're interested, let us know! Just ping me directly at kitg@microsoft.com , and we'll go from there. The...
BCL Team Blog
Guideline update: names of generic parameters[Kit George]
Posted
over 9 years ago
by
BCL Team
1
Comments
The guidelines for the names of generic parameters have been updated. Read the new approach on Krys's blog at http://blogs.msdn.com/kcwalina/archive/2004/11/03/251722.aspx
Page 1 of 1 (14 items)