UPDATE: Starting with C # 6, the answer is now YES .
No, in C # you can import namespaces, not classes.
However, you can give it a shorter alias:
using M = System.Math;
Now you can use an alias instead of a class name:
double y = M.Cos(3.14);
Be careful how you use it. In most cases, the code is more readable with a descriptive type name Math, rather than a cryptic one M.
, , :
using StringBuilder = System.Text.StringBuilder;
StringBuilder System.Text.