Tagged Questions

13
votes
7answers
3k views

Where do Java and .NET string literals reside?

A recent question about string literals in .NET caught my eye. I know that string literals are interned so that different strings with the same value refer to the same object. I also know that a ...
3
votes
3answers
442 views

Searching For String Literals

In the quest for localization I need to find all the string literals littered amongst our source code. I was looking for a way to script this into a post-modification source repository check. (I.E. ...
2
votes
2answers
270 views

What are the differences in string literals between C#, Visual Basic.NET, and Managed C++?

I'm referring to the syntax for writing strings in code, including multiline strings and verbatim strings. (Context: I'm working on a tool that scans code, and it's important to determine when ...
1
vote
3answers
66 views

How can I get any expression in C# as string?

In many cases one needs the name of an expression, parameter, statement, etc. For example: public abstract void Log(string methodName, string parameterName, string message); public void ...
0
votes
2answers
195 views

Distinguish a string literal from a string C#

I want to do something like IsItAStringLiteral("yes") var v = "no"; IsItAStringLiteral(v) With the obvious return value. Is it possible?