C
C#•3y ago
Bobby Bob

Difference between String and string keyword [Answered]

There's 2 string types that exists in C#. One with a capital letter and one without a capital letter. I've been taught, when I was learning Java, that by convention every primitive type is lowecase and every reference type is PascalCase. This convention seems to extend to C# as well. Every reference type in C# is CamelCase (+ properties, no idea if that's reference type or not). Everything adheres to this convention except for one which is the String keyword, I've no idea what the hell this is, why it exists and if it was even intended to be there in the language?
24 Replies
mtreit
mtreit•3y ago
They are entirely identical
reflectronic
reflectronic•3y ago
in C#, there is no difference* *unless you do something strange
Bobby Bob
Bobby BobOP•3y ago
so it's just an alias?
mtreit
mtreit•3y ago
Just use string (lowercase)
reflectronic
reflectronic•3y ago
in C# there is no distinction between primitive and non-primitive types
Bobby Bob
Bobby BobOP•3y ago
Why is it that String and string have different highlighting on my IDE 🤔
mtreit
mtreit•3y ago
Yes
Bobby Bob
Bobby BobOP•3y ago
How so?
reflectronic
reflectronic•3y ago
well, there isn't. there is no such concept as "primitive type" there are built-in keywords that alias certain classes string is a keyword that specifically aliases global::System.String
Bobby Bob
Bobby BobOP•3y ago
Is it the same for Java as well?
reflectronic
reflectronic•3y ago
no. java does specifically have primitive types. the only way to say int is int
mtreit
mtreit•3y ago
string in c# is just an alias for System.String
Bobby Bob
Bobby BobOP•3y ago
Like are all primitive types just part of a system package of some sort? OOOOOOOOOOO Ok, that makes a lot more sense I've had an implicit global use in my project that imports the System namespace, I didn't realize I was using System.String, thought I was using some kind of "primitive" type Ty both of u, that answered my question in it's entirety
333fred
333fred•3y ago
Correct int == System.Int32 float = System.Single And so on
mtreit
mtreit•3y ago
I need to know what the "something strange" is 🙂
reflectronic
reflectronic•3y ago
well, if you define your own class called String
mtreit
mtreit•3y ago
Ah ok
333fred
333fred•3y ago
I was trying to avoid linking that article But I guess I need to
mtreit
mtreit•3y ago
Defining your own type called string: Chaotic Evil
333fred
333fred•3y ago
Can't do that, have to do @string
mtreit
mtreit•3y ago
Doh Er, I meant String
333fred
333fred•3y ago
That is somewhat more understandable Maybe you're implementing a DB
Accord
Accord•3y ago
✅ This post has been marked as answered!

Did you find this page helpful?