EMCA-334 proper type usage
From the C# Language Specification
section 8.2.1
Each of the predefined types is shorthand for a system-provided type. For example, the keyword int refers
to the struct System.Int32. As a matter of style, use of the keyword is favored over use of the complete
system type name.
I shall utilize this new found knowlege immediately.
:%s/UInt32/uint/g;
November 29th, 2006 at 2:32 am
Excellent post.
November 29th, 2006 at 7:03 pm
Thanks, this helped.