Frans Bouma's blog

Generator.CreateCoolTool();

Syndication

News

    Visit LLBLGen Pro's website

    Follow FransBouma on Twitter

    Add to Technorati Favorites

About me

Fun stuff I created

My work

Just in case you're using VS.NET 2008 Beta 2 with C#...

If you're using C# and VS.NET 2008 and you're typing some code like:

CustomCollection<MyType> items = new CustomCollection<MyType>()
foreach(OtherType other in OtherTypeCollection)
{
    items.Add(CreateItemFromOtherType(other));
}
where CustomCollection<MyType> implements IList explicitly (void IList.method(params) {} ), you will run the risk that the IDE collapses with a crash. This is a known bug and it is fixed before RTM (yay!), but it still can cause headaches for the early-adopters of MS' next IDE. So you have been warned .

Full report here.

Published Friday, August 10, 2007 1:46 PM by FransBouma

Comments

# re: Just in case you're using VS.NET 2008 Beta 2 with C#...@ Friday, August 10, 2007 5:06 PM

:-(

:-)

I'm loving Beta 2 so far!

Will Asrari

# re: Just in case you're using VS.NET 2008 Beta 2 with C#...@ Friday, August 10, 2007 8:32 PM

Thanks for the heads up

Al Pascual