In C #, using String
or string
, Int32
or int
, among others, has no difference, in theory. Does anyone know if this difference has any impact on the performance of highly complex applications?
In C #, using String
or string
, Int32
or int
, among others, has no difference, in theory. Does anyone know if this difference has any impact on the performance of highly complex applications?
Int
and Int32
= are synonyms, what differs is that int32
makes explicit the 32bits
to whoever reads the code.
string
is an alias for the class String
ie there is no difference if you use one or the other.
In short: It will not affect anything you use or otherwise, it will not impact performance.