I am trying to add a whole line to an arabic line but will fail
// Arabic String Astr = "سُوْرَةُ الْفَاتِحَة"; // String with Integer -1 num = "-"+1; // Adding Strings r = Astr + num; r = num + Astr;
output: سُوْرَةُ الْفَاتِحَة-1
Required Conclusion:
سُوْرَةُ الْفَاتِحَة-1
I want a whole on the right side.
Update: displays this result in a ListBox in visual studio using the Items.Insert() method, so if anyone knows to set up a ListBox, then kindly pass if I ListBox display numbers 1 2 3 4 with each row?
source share