I saw this C# using statement in a code example:
using StringFormat=System.Drawing.StringFormat;
What's that all about?
|
3
|
I saw this C# using statement in a code example:
What's that all about?
|
||||||||
|
|
|
That's aliasing a typename to a shorter name. The same syntax can also be used for aliasing namespaces. See using directive. (Updated in response to Richard) |
||||||
|
|
|
The using keyword is used for importing namespaces or aliasing classes or for managing scope on disposable objects. Here we are talking about the namespace usage.
The way using was used here is a little unusual in C# but more common in Java import statements. What it does is provide a StringFormat alias without importing the entire System.Drawing namespace. Some people with a Java background like to proactvely import only the classes being used rather than whole anmespaces (aka Java packages). Arguably you proactively avoid potential name conflicts if you import only specific class names but it isn't very common in C# and Visual Studio doesn't encourage it the way, say, Netbeans does for Java. The more common usuage of aliasing is to resolve class names to a shortened alias when there is a naming conflict.
|
|||
|
|
|
|
Perhaps a different, unrelated StringFormat is declared in another namespace like Acme.Stuff. If that were the case, this would cause confusion:
Aliasing is with using on the StringFormat=System.Drawing.StringFormat clears up some of the confusion. |
|||
|
|
|
|
This will define an alias to System.Drawing.StringFormat. That's the same thing like this example:
|
||
|
|
|
|
It's a alias for the namespace |
||
|
|
|
|
It's an alias, from now on, the user can use StringFormat to refer to System.Drawing.StringFormat. It's useful if you don't want to use the whole namespace (in case of name clash issues for example). |
||||
|
|
|
It means you're using StringFormat as an alias for System.Drawing.StringFormat; |
||
|
|