Edit characters in a String in C#
Posted
by David Relihan
on Stack Overflow
See other posts from Stack Overflow
or by David Relihan
Published on 2010-05-28T17:46:10Z
Indexed on
2010/06/09
18:52 UTC
Read the original article
Hit count: 161
What's the cleanest way of editing the characters in a string in C#?
What's the C# equivalent of this in C++:
std::string myString = "boom";
myString[0] = "d";
© Stack Overflow or respective owner