Archive for August, 2005
Sign Up for Free Issues of CoDe Focus Magazine!
Posted by claudiolassala in Uncategorized on August 31, 2005
These magazines are distributed at special events such as conferences or product launches. We generally distribute them free of charge to our subscribers and additional mailing lists. If you are interested in receiving such free magazines, click the link below. (Regardless if you are a current subscriber or not! Everyone qualifies for a free issue!)
Click here to be added to the list!
There are several issues planned at this point. One that will ship fairly soon targets Tablet PC and Mobile PC Development. The link above will allow you to sign up for those issues and also for issues beyond that. This will give us a good idea of what topics we should be tackling first. So make sure you tell us about as many of your interests as possible.
Feel free to pass this on to your friends…
The using block
Posted by claudiolassala in Software Development, Uncategorized on August 19, 2005
class MyClass : IDisposable
{
#region IDisposable Members
public void Dispose()
{
Console.WriteLine("Disposing…");
}
#endregion
}
{
throw new Exception("Forcing an exception…");
}
MyClass foo = null;
try
{
foo = new MyClass();
throw new Exception("Forcing an exception…");
}
catch
{
Console.WriteLine("Catching…");
}
finally
{
Console.WriteLine("Finally…");
if (foo != null)
{
foo.Dispose();
}
}
What’s up with zero-based arrays?
Posted by claudiolassala in Software Development on August 12, 2005
Just getting started…
Posted by claudiolassala in Uncategorized on August 12, 2005