Search Results

5
votes

String.Replace does not seem to replace brackets with empty string…

The Replace function returns the modified string, so you have to assign it back to your str variable. String str = "{3}"; str = str.Replace("{", String.Empty); str = st …
1
vote

C# Best way of assigning values to strings in a loop

I don't usually optimize to this level, because I'd expect the JIT compiler to be able to perform an optimization like that anyway at runtime. That being said, I've never actually compared the two. …
0
votes

Problems launching a process with Process.Start() - how do I construct the argument list?

Here's part of a class I wrote a while back to deal with passing arguments to commandlines in Windows. Any argument that contains whitespace gets quotes around it and any quotes embedded within it …