To render right-to-left text in C#, you can set the RightToLeft property of the control to true. This will align the text from right to left.
main.cs104 chars3 lines
If you're working with unicode strings, you can set the Direction property of the string to RightToLeft. This will render the string from right to left, even if it contains left-to-right characters.
main.cs283 chars5 lines
gistlibby LogSnag