Possible Duplicate:
Using Statements vs Namespace path? C#
I just want to know what the difference between including the namespace at the top of a C# class vs actually defining it in the program code.
So:
using System.Windows;
Or
System.Windows.MessageBox.Show();
Would having the namespace load the whole library or will only the needed data be used?
Sorry if it may seem confusing.