Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have two strings.

one is "\""

and the other is "\""

I think that they are same.

However, String.Compare says they are different.

This is very strange.

Here's my code.

string b = "\"";

string c = "\"";

if (String.Compare(b,c) == 0)
{
    Console.WriteLine("Good");
}

if (c.StartsWith("\""))
{
    Console.WriteLine("C");
}

if (b.StartsWith("\""))
{
    Console.WriteLine("B");
}

I expected that it may print "GoodCB".

However, it only prints "B".

In my debugger, c[0] is 65279 '' and c[1] is 34 '"'. and b[0] is '"'.

But I don't know what 65279 '' is.

Is there empty character?

Thank you.

share|improve this question
3  
I don't see any String.Compare() calls... – BoltClock Jul 22 '11 at 0:26
What is your ouput ? – genesis Jul 22 '11 at 0:26
You don't have String.Compare in your code. What output are you getting and what are you expecting? – Thomas Owens Jul 22 '11 at 0:27
I don't see where you're using String.Compare. Shouldn't it be if (String.Compare(b, c) ==0)? – Tim Jul 22 '11 at 0:28
possible duplicate of Differences in string compare methods in C# – manojlds Jul 22 '11 at 0:29
show 8 more comments

closed as not a real question by manojlds, spender, Gabe, dtb, Graviton Jul 22 '11 at 1:47

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

I tried your code with the Sting.Compare. Double-check what you wrote for string c - you probably have a typo. That would result in the program only printing B. I got the following output:

Good.

C

B

share|improve this answer
Did you copy my code? – 장선민 Jul 22 '11 at 0:37
I think there's no typo in my code. I want to attach my solution file. – 장선민 Jul 22 '11 at 0:38
1  
Try a clean & rebuild. – BoltClock Jul 22 '11 at 0:39
Yes, I copied your code. Try @BoltClock's suggestion. – Tim Jul 22 '11 at 0:40
Thank you for your answer. I tried clean & rebuild, but it only prints "B" even now. – 장선민 Jul 22 '11 at 0:40
show 11 more comments

I really can't get the same output as yours.....

Copy from your code ↓

static void Main()
{
    string b = "\"";

    string c = "\"";

    if (String.Compare(b,c) == 0)
    {
        Console.WriteLine("Good");
    }

    if (c.StartsWith("\""))
    {
        Console.WriteLine("C");
    }

    if (b.StartsWith("\""))
    {
        Console.WriteLine("B");
    }

    Console.ReadKey();
}

The result ↓

The result

share|improve this answer
Why do I see ¥ instead of a backslash in your image? – BoltClock Jul 22 '11 at 1:50
@BoltClock In the Japanese ISO 646 encoding (a 7-bit code based on ASCII), the code point 0x5C that would be used for backslash in ASCII is instead rendered as a yen mark (¥). And you can see the link en.wikipedia.org/wiki/Backslash – shenhengbin Jul 22 '11 at 2:02
Ah, thanks for that. Something new I learned this morning :) – BoltClock Jul 22 '11 at 2:03
Scott, the pretty picture of a cloud with the code in it is a testament to your excellent artistic skills and imagination, however please remove this and just paste a normal code block. :) Thanks. – Kev Jul 22 '11 at 12:48
@Kev Oh , I'm sorry , I will replace it as soon – shenhengbin Jul 23 '11 at 1:45

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