|
|
|
|
|
by InclinedPlane
6024 days ago
|
|
You cannot take a substring without copying. That's not a bug, it's a feature. Indeed, immutable strings should almost always be the default choice due to security concerns alone. C is optimized for the rare case, modern languages with immutable strings (like C#) are optimized for the common case, this is how it should be. |
|