WPF Custom Screen Saver Art
How To Debug Your Application?

Why use a debugger when I can just do simple outputs to verify? You have to remove message box calls to make your code production worthy. could cause you to delete some code you didn’t mean to which introduces bugs! Debugging lets you stop the program in real time and get data back about your environment with a click of a mouse.
Bruno Terkaly’s blog has 10 lessons on how to debug an application within Visual Studio:
- Lesson 1 - Intro
- Lesson 2 – Breakpoints in SubExpressions
- Lesson 3 – BreakPoint HitCount
- Lesson 4 – Debugging Threads
- Lesson 5 – Using TracePoints
- Lesson 7 – Advanced Techniques – Using Object ID
- Lesson 6 – Watch and Immediate Windows – Advanced Techniques
- Lesson 8 – The Garbage Collector – GC
- Lesson 9 – The Set Next Statement
- Lesson 10 – Debugging Threads
.NET Framework 4.0
Ce superbe poster vous présente une sélection des nouveautés (Types et Namespaces) entre le .NET Framework 3.5 SP1 et le .NET Framework 4.0.
Celui-ci est disponible sous différentes versions :
- PNG : here
- DeepZoom : http://tinyurl.com/5lcz5w
- PDF : http://tinyurl.com/PDC2008-NETFX4PDF
Create your game

internal void Update(GameTime gameTime)
{
float timeDelta = (float)gameTime.ElapsedGameTime.TotalSeconds;
// Add velocity to the current position.
ship.Position += ship.Velocity;
// Bleed off velocity over time.
ship.Velocity *= 0.95f;
for (int i = 0; i < style="color: rgb(0, 0, 153);"> for (int i = 0; i < style="color: rgb(0, 0, 153);"> if (bulletList[i].isActive)
{
bulletList[i].Update(timeDelta);
}
}
}
XNA Creators Club Online - home

Imagine Cup 2009

Registration is open for IC 2009 at the official site.
Check out the categories for next year, and start preparing for Egypt!
The theme is kind of open (Solve the World's Toughest Problems), you can focus your efforts in whatever you see fit, not restricted to one social problem likeprevious years. This may seem like an advantage, but I anticipate a lot of great ideas from all over the world to compete against...
Good luck!
Be the first to rate this post