How can I add a right facing arrow to the end of a string of text in C# -
i have string in c# this:
var = "my string";
what add arrow end of this. looked , arrow add is:
u+0003e unicode > hex code > but how can add end of string? there function need use when adding kind of character. note it's not html web page.
var = "my string\u003e"; or var = "my string>".
on keyboards, '>' character can produced holding down shift , pressing period (.) key.
Comments
Post a Comment