c# - Using directive for basic types like C++ typedef -
i[m trying mimic c++ typedef on c# using using clause:
using mystring = system.string; using myint = system.int32; using mybool = system.boolean; using myfloat = float;
it works types, except float type, basic type.
is there way similar c++ ?
typedef float myfloat;
Comments
Post a Comment