Tagged Questions
4
votes
3answers
141 views
How to create aliases in c#
How do i create aliases in c#
Take this scenario
class CommandMessages
{
string IDS_SPEC1_COMPONENT1_MODULE1_STRING1;
}
say i create an object of this class
CommandMessages objCommandMessage ...
0
votes
3answers
88 views
Is there any reason not to use Aliases in the System namespace?
I've always been used to using String instead of string and Int32 instead of int. Mainly because everything is a class, so I like to keep consistent and treat so called 'primitives' just like every ...