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

Popular posts from this blog

php - Vagrant up error - Uncaught Reflection Exception: Class DOMDocument does not exist -

vue.js - Create hooks for automated testing -

Add new key value to json node in java -