Is there a bit of syntactic sugar for prefixing data to the beginning of a string in a similar way to how += appends to a string?
|
|
|||||||||||
|
|
|
Just use:
There's no compound assignment operator that does this. |
||
|
|
|
There is no =+ operator in C#, but thankfully OO comes to the rescue here:
For more info on string.Insert: http://msdn.microsoft.com/en-us/library/system.string.insert.aspx I would agree that a = b + a seems the most sensible answer here. It reads much better than using string.Insert that's for sure. |
||
|
|
|
You could always write an extension method:
It's not syntactic sugar, but easy nonetheless. Although it is not really any simpler than what has already been suggested. |
||
|
|
|
|
These are methods from the FCL that can be used to merge strings, without having to use any concatenation operator. The + and += operators are prone to using a lot of memory when called repeatedly (i.e. a loop) because of the nature of strings and temp strings created. (Edit: As pointed out in comments, String.Format is often not an efficient solution either) It's more of a syntactic alternative than sugar.
^ More info on String.Format at MSDN. Edit: Just for two strings:
^ More info on String.Concat. |
||||||||||||
|
|
|
|
|||
|
|
