Tools
insidevs.txt
Associated article: Inside Visual Studio 2008
Tags: .NET Tools Design
Published source code accompanying the article by Dino Esposito in which he examines Visual Studio 2008, the first version of Visual Studio to support multiple version of .NET.
Inside Visual Studio 2008
by Dino Esposito
Listing One
namespace Samples
{
public static class StringExtensions
{
public static bool IsInt32(this string content)
{
int number;
bool result = Int32.TryParse(content, out number);
return result;
}
public static bool IsDate(this string content)
{
DateTime ...


