vote up 0 vote down star

C# and VB.NET comes with built in types that maps to the CLR types. Examples are: int (C#) and Integer (VB) maps to System.Int32, long (C#) and Long (VB) maps to System.Int64. What are the best practices for deciding when to use built in types or not to use them (using the System.* structs/classes instead)?

flag

I don't understand why you accepted Shawn's answer. Although his opinion is valid, his reasoning behind his answer sucks. – jjnguy May 26 at 16:38
He basically found the only person who he agrees with (whether right or not) and accepted it. – TheTXI May 26 at 16:40
1  
The votes are based on the quality of the question... not whether you agree with the accepted answer. +1` to counter other's stupidity. – James Atkinson May 26 at 16:45
1  
One problem: Shawn's answer doesn't actually make any sense. If I told you to use Int32 because it'll stop hackers from secretly intercepting your type declaration, would you accept my answer because it "provides you with solid ground to choose between the two options?" – mquander May 26 at 16:46
2  
I already posted an answer half an hour ago that gives my advice about how to choose between the two, and unlike Shawn, I'm not going to go to the effort of lying to you. – mquander May 26 at 16:58
show 4 more comments

7 Answers

vote up -20 vote down check

I would always use System.Int32. You never know when Microsoft could change their minds and remap int to System.String or System.Boolean. Then you would be completed !@#%ed.

link|flag
1  
The "int, uint, byte, sbyte, bool, etc..." has exactly mapped to specific types by design. The argument "You never know when Microsoft could change their minds and remap int to System.String or System.Boolean" is missleading. – TcKs May 26 at 16:26
7  
Sure, you know, it's not like there's a finalized public specification for the C# language that defines what type each keyword maps onto. jaggersoft.com/csharp_standard/8.2.1.htm/… – mquander May 26 at 16:37
1  
Apparently the questioner doesn't get the joke either, which makes the joke pretty funny. – mquander May 26 at 16:40
3  
Surely a SO record for accepted answer with most down-votes. – James Atkinson May 26 at 16:41
2  
To those who don't get the joke - Microsoft has a Corporate limit on the number of developers it can piss off per year. Remapping "int" to System.String would exceed that limit for the next ten years. It would please the lawyers, though, so maybe it would balance out. – John Saunders May 26 at 16:47
show 10 more comments
vote up 11 vote down

The only time I would ever explicitly use "System.XYZ" in preference to a built-in type keyword is when I need an integer type of very specific size, and I want that to be clear to anyone reading my code (e.g. I might use Int32 instead of int if the integer in question is actually 4 8-bit fields packed together.)

link|flag
vote up 14 vote down

The language types (e.g. string, int, char) are simply Aliases for the CLR types (System.String, System.Int32, System.Char).

They are interchangeable, there is no need to prefer one over the other.

EDIT

The poster asked for some help in choosing between the two, very well.

Personally I tend to choose the C# language types (int, string, char etc), because they involve less typing - I suppose I'm just lazy :)

link|flag
In other words. They are the exact same thing. Think: String s = "hi"; String s2 = s; s and s2 are the same string. – jjnguy May 26 at 16:33
@jjnguy: This isn't about the values of S & S2 being equal, ignore the values. I'm saying the types that hold the values (not the values) are identical. i.e. string s1 = "Hello"; System.String s2 = "World"; s1 is the same TYPE as s2, irregardless of the fact that their values differ. – Binary Worrier May 26 at 16:48
vote up 21 vote down

I nearly always use the built-in aliases, such as int/short/long. They are easier to read, and do not require you to import System or to type System.Int32 everywhere, etc.

The language clearly defines them, and gives them a specific meaning, so I do not see any harm. However, this is 100% a personal choice.

That being said - the one place where I do explicitly use Int32, Int16, etc., is if I'm dealing with binary storage or transfer, especially to or from a custom binary format. In this case, having the explicit bitsize of each member going into and out of the file makes the code more readable and understandable, IMO.

link|flag
1  
+1: Well-stated. – Greg D May 26 at 16:27
vote up 2 vote down

Using "int" and "Int32" (and the others) are exactly same. Typicaly are used the keywords (int, Integer (vb.net), bool, etc...), because it is shorter and is highlited in IDE.

link|flag
vote up 3 vote down

I always use the System.* types because they look more consistent between other classes - upper case first letter and the same syntax highlighting. But that's just a personal preference and just an aesthetic issue.

link|flag
vote up 0 vote down

Rather than when to use or not use the language types versus explicit BCL class names, it is more important to know whether or not the type you intend to use is CLS Compliant.

Specifically, the unsigned integer types are not CLS compliant because there is no requirement that a language support unsigned integer math.

Other than this wrinkle... I would recommend whichever idiom is more in keeping with your organizations code practices. If you fully namespace your type references, then I would continue that pattern with the System.* namespace... (I would also recommend against that practice, though, as it adds reader load without attendant gain in clarity).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.