InterviewSolution
Saved Bookmarks
| 1. |
Can I Define A Type That Is An Alias Of Another Type (like Typedef In C++)? |
|
Answer» Not exactly. You can create an alias within a single file with the "USING" directive: using SYSTEM; using Integer = System.Int32; // alias Not exactly. You can create an alias within a single file with the "using" directive: using System; using Integer = System.Int32; // alias |
|