I am playing with Pex and one of the parameters it passes into my method is "\0".

What does that mean? My guess is an empty string ("") based on the content of my method. However, if it is the same then why not just use "" instead of "\0"?

Anyone know what it is?

link|improve this question

75% accept rate
Is it passing the string containing a backslash followed by a zero, or is it passing a string containing the null character? – Anon. Feb 18 '10 at 22:56
This is what the code says: this.TestSaveString("\0"); – Vaccano Feb 18 '10 at 23:10
Thanks for all the great answers! I chose Randolpho's because it gave me the most detail about what was going on. – Vaccano Feb 19 '10 at 18:52
feedback

4 Answers

up vote 9 down vote accepted

'\0' is a "null character". It's used to terminate strings in C and some portions of C++. Pex is doing a test to see how your code handles the null character, likely looking for the Poison Null Byte security exploit.

Most C# code has nothing to fear; if you pass your string to unmanaged code, however, you may have problems.

Edit:

Just to be explicit... Pex is passing a string containing a null character. This is not a null reference.

link|improve this answer
1  
Note that a NULL string IS NOT the same as an empty string. From the MSDN article: "By contrast, a null string does not refer to an instance of a System.String object and any attempt to call a method on a null string results in a NullReferenceException. However, you can use null strings in concatenation and comparison operations with other strings. The following examples illustrate some cases in which a reference to a null string does and does not cause an exception to be thrown" – jfawcett Feb 18 '10 at 23:00
feedback

It's a string containing the character '\0'. C# doesn't treat this in any particularly special way - it's just unicode character U+0000. If you write:

int firstCodePoint = text[0];

then you'll find firstCodePoint is 0.

link|improve this answer
feedback

It's a string with a null character. Older string libraries — like that used in C or older C++ libraries — used the '\0' character to indicate the end of the string.

Newer environments like .Net use a different system, but there is a lot of history around ending a string with '\0', such that it's a common point of error. Testing libraries like Pex will use it to make sure your program handles it correctly.

link|improve this answer
Eh.... I can't bring myself to -1 this one, but it looks like you're implying that C# strings are null terminated. They are not. – Randolpho Feb 18 '10 at 22:59
@Randolpho "Newer environments like .Net use a different system" -- seems to me I'm implying the exact opposite. – Joel Coehoorn Feb 18 '10 at 23:01
Yep. I'm not sure how anything like that is implied. – Andrew Backer Feb 18 '10 at 23:05
I guess I'm getting hung up on your first sentence. The asker is clearly using .NET. Pex is not passing a string with an "extra null character", it is passing a string that contains a single null character. "extra null character" implies that there are two null characters, one in the string and one terminating the string. This is not the case. I'm not dinging on it because it's not explicit like @mobrule's was, but it's pretty heavily implied to me. – Randolpho Feb 18 '10 at 23:05
The more I think about it... the rest of the answer is fine. I'm thinking I'm just gonna edit that first sentence and +1 you. :) – Randolpho Feb 18 '10 at 23:11
feedback

A string of length 1, containing the character \u0000 (aka NUL). This character is not treated specially.

In C, which uses \0 to terminate string, you also allocate a string of length 1. In this case the standard string functions will report a length of 0, since the string contains \0 as well as being terminated with it. You could safely modify str[0], or strncat a single character into it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.