tagged [literals]

String in function parameter

String in function parameter In the above program, `HelloWorld` will be in read-only section(i.e string table). `x` will be pointing to that read-only section, so trying to modify that values will be ...

Keeping code structure with string literal that uses whitespace

Keeping code structure with string literal that uses whitespace So a bit of a weird question I was having trouble coming up with the search terms for. If I have a multi-line string literal in my progr...

17 Sep at 20:31

Null literal issue

Null literal issue I have a repeater that should show a bound field value only if it exists. Having read [this post](https://stackoverflow.com/questions/368169/conditional-logic-in-aspnet-page) I deci...

23 May at 12:4

Which C# XML documentation comment tag is used for 'true', 'false' and 'null'?

Which C# XML documentation comment tag is used for 'true', 'false' and 'null'? Which C# XML documentation comment tag is used for the literals `true`, `false` and `null`? In Microsoft's own documentat...

12 Feb at 12:26

Why do bool.TrueString and bool.FalseString exist?

Why do bool.TrueString and bool.FalseString exist? I was reading the MSDN article of the [boolean structure](http://msdn.microsoft.com/en-us/library/System.Boolean.aspx), when I saw that a boolean has...

3 Jul at 12:3

C# suffix behind numeric literal

C# suffix behind numeric literal I am new to C# and want to understand how values work. If I look at a normal integer value, it has 3 important parts in it: the type, name and value. But when I see a ...