-5

what is this error? I was writing a new program but I saw an error bur I don't know what is it! !http://rozup.ir/up/salardesigner/Pictures/eror.png

Darren
  • 68,902
  • 24
  • 138
  • 144
  • 4
    Image links are intended for real *images*. You've taken a picture of *code*, which is much more easily included as *text*. Edit your question to put the code in directly, and also copy and paste the stack trace into the question, including the message from the exception. – Jon Skeet Jun 21 '13 at 14:43
  • the irony is the `[ask]` in the question title [ask] – Sayse Jun 21 '13 at 14:50
  • When someone edits your question to improve it, don't edit it back! Paste your code, not a picture of it. –  Jun 21 '13 at 14:52

1 Answers1

5

You're trying to replace "" with "" - this is illegal.

Remove .Replace("", "");

Darren
  • 68,902
  • 24
  • 138
  • 144