47
votes
14answers
4k views
In C# what is the difference between String and string
In C# what is the difference between String and string? (note the case)
Also, what are the guidelines for the use of each?
33
votes
15answers
9k views
Why can’t strings be mutable in Java and .NET?
Why is it that they decided to make string immutable in Java and .NET (and some other languages)? Why didn't they make it mutable?
29
votes
9answers
6k views
String vs string in C#
In C# the string keyword (highlighted in Visual Studio as a data type) is just a shortcut to the String class right?
In that case, it would be the same to use either while coding from the semantic …
21
votes
12answers
1k views
What is meant by immutable?
This could be the dumbest question ever asked but I think it is a total confusion for a newbie. Can somebody clarify what is meant by immutable? Why is a String immutable? What are the …
21
votes
16answers
5k views
Is there a simple script to convert C++ enum to string?
Suppose we have some named enums:
enum MyEnum {
FOO,
BAR = 0x50
};
What I googled for is a script (any language) that scans all the headers in my project and generates a header with one …
20
votes
6answers
3k views
Can I convert a C# string value to a string literal
In C#, can I convert a string value to a string literal, the way I would see it in code? I would like to replace tabs, newlines, etc. with their escape sequences.
If this code:
…
20
votes
23answers
1k views
Why is String.Format static?
Compare
String.Format("Hello {0}", "World");
with
"Hello {0}".Format("World");
Why did the .Net designers choose a static method over an instance method? What do you think?
18
votes
5answers
2k views
Why does Java’s hashCode() in String use 31 as a multiplier?
In Java, the hash code for a String object is computed as
s[0]*31^(n-1) + s[1]*31^(n-2) + ... + s[n-1]
using int arithmetic, where s[i] is the ith character of the string, n is the length of the …
17
votes
7answers
688 views
What’s the use of System.String.Copy in .NET?
I'm afraid that this is a very silly question, but I must be missing something.
Why might one want to use String.Copy(string)?
The documentation says the method
Creates a new instance of String …
17
votes
5answers
551 views
How do you put { and } in a format string
I'm trying to generate some code at runtime where I put in some boiler-plate stuff and the user is allowed to enter the actual working code. My boiler-plate code looks something like this:
using …
16
votes
6answers
708 views
Why isn’t String.Empty a constant?
In .Net why is String.Empty read only instead of a constant? I'm just wondering if anyone knows what the reasoning was behind that decision.
16
votes
13answers
8k views
.NET String to byte Array C#
How do I convert a string to a byte array in .NET (C#)?
Update: Also please explain why encoding should be taken into consideration. Can't I simply get what bytes the string has been stored in? Why …
16
votes
10answers
4k views
C# String enums.
Hi,
I have the following enumerator:
public enum AuthenticationMethod
{
FORMS = 1,
WINDOWSAUTHENTICATION = 2,
SINGLESIGNON = 3
}
The problem however is that I need the word "FORMS" when I ask …
15
votes
7answers
1k views
Which loop has better performance? Why?
String s = "";
for(i=0;i<....){
s = some Assignment;
}
or
for(i=0;i<..){
String s = some Assignment;
}
I don't need to use 's' outside the loop ever again.
The first option is …
15
votes
9answers
3k views
java String concatenation
I'm curious and wasn't sure, so i thought id ask:
assuming String a and b.
a+=b
a.concat(b)
Under the hood are they the same thing?
Edit:
Here is concat decompiled as reference, I'd like to be …
