Click here to Skip to main content
15,914,488 members
Home / Discussions / C#
   

C#

 
GeneralRe: C# decompilation Pin
Christian Graus12-Apr-07 1:24
protectorChristian Graus12-Apr-07 1:24 
GeneralRe: C# decompilation Pin
Ed.Poore12-Apr-07 1:30
Ed.Poore12-Apr-07 1:30 
GeneralRe: C# decompilation Pin
hairy_hats12-Apr-07 1:33
hairy_hats12-Apr-07 1:33 
GeneralRe: C# decompilation Pin
Christian Graus12-Apr-07 1:52
protectorChristian Graus12-Apr-07 1:52 
GeneralRe: C# decompilation Pin
hairy_hats12-Apr-07 3:02
hairy_hats12-Apr-07 3:02 
GeneralRe: C# decompilation Pin
Pete O'Hanlon12-Apr-07 4:09
mvePete O'Hanlon12-Apr-07 4:09 
GeneralRe: C# decompilation Pin
hairy_hats12-Apr-07 5:18
hairy_hats12-Apr-07 5:18 
GeneralRe: C# decompilation Pin
Pete O'Hanlon12-Apr-07 9:17
mvePete O'Hanlon12-Apr-07 9:17 
GeneralRe: C# decompilation Pin
Christian Graus12-Apr-07 10:38
protectorChristian Graus12-Apr-07 10:38 
GeneralRe: C# decompilation Pin
AlwiNus14-Apr-07 12:34
AlwiNus14-Apr-07 12:34 
GeneralRe: C# decompilation Pin
Christian Graus14-Apr-07 13:39
protectorChristian Graus14-Apr-07 13:39 
QuestionBindingList Pin
mark_w_11-Apr-07 23:43
mark_w_11-Apr-07 23:43 
AnswerRe: BindingList Pin
Jaiprakash M Bankolli12-Apr-07 0:35
Jaiprakash M Bankolli12-Apr-07 0:35 
QuestionXml file [modified] Pin
7111-Apr-07 23:17
7111-Apr-07 23:17 
AnswerRe: Xml file Pin
Christian Graus11-Apr-07 23:32
protectorChristian Graus11-Apr-07 23:32 
GeneralRe: Xml file Pin
blackjack215011-Apr-07 23:59
blackjack215011-Apr-07 23:59 
GeneralRe: Xml file Pin
7112-Apr-07 0:06
7112-Apr-07 0:06 
GeneralRe: Xml file Pin
7112-Apr-07 0:46
7112-Apr-07 0:46 
hi,
foreach (char c in FileName)
{
switch (c)
{
case '&':
FileName = FileName.Replace("&", "&");
//"<","&"
break;
case '>':
FileName = FileName.Replace(">", ">");
break;
case '<':
FileName = FileName.Replace("<", "<");

break;
case '"':
FileName = FileName.Replace("\"", """);
break;
case ' ':
FileName = FileName.Replace(" ", " ");
break;
case '@':
FileName = FileName.Replace("@", "@at");
break;

see the code i am replacing the exttra charcters like this but still i am gettign error.
GeneralRe: Xml file Pin
Christian Graus12-Apr-07 0:51
protectorChristian Graus12-Apr-07 0:51 
GeneralRe: Xml file Pin
7112-Apr-07 0:59
7112-Apr-07 0:59 
GeneralRe: Xml file Pin
Christian Graus12-Apr-07 1:48
protectorChristian Graus12-Apr-07 1:48 
GeneralRe: Xml file Pin
7112-Apr-07 1:02
7112-Apr-07 1:02 
GeneralRe: Xml file Pin
7112-Apr-07 0:06
7112-Apr-07 0:06 
AnswerRe: Xml file Pin
Jaiprakash M Bankolli12-Apr-07 0:39
Jaiprakash M Bankolli12-Apr-07 0:39 
GeneralRe: Xml file Pin
7112-Apr-07 0:42
7112-Apr-07 0:42 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.