5
votes
2answers
85 views
Will Interning strings help performance in a parser?
If you are parsing, lets just say HTML, once you read the element name, will it be beneficial to intern it? The logic here is that this parser will parse the same strings (element names) over and over …
3
votes
6answers
322 views
Why does .NET create new substrings instead of pointing into existing strings?
From a brief look using Reflector, it looks like String.Substring() allocates memory for each substring. Am I correct that this is the case? I thought that wouldn't be necessary since strings are …
4
votes
3answers
204 views
Operator overloading in Generic Methods
This code snippet is from C# in Depth
static bool AreReferencesEqual<T>(T first, T second)
where T : class
{
return first == second;
}
static void Main()
{
…
