Arduino Serial.Read() problems

Hey I am having trouble with my project. I have C# sending a number to the Arduino, but the Arduino will only display 49, or 10. Any ideas?

Yes, you're displaying the decimal value of the ASCII codes.
49 = 0x31 = '1'
10 = line-feed