文字を逆にしてから文字列全体を逆にする必要があります。私はそれを自分で必要としていたので、テスト済みで動作しています:
public static string ReverseString(this string str)
{
StringBuilder sb = new StringBuilder();
foreach (char c in str.Reverse())
{
sb.Append(c);
}
return sb.ToString();
}
public static string RightToLeft(this string str)
{
List<string> output = str.Split(' ').Select(s => s.Any(c => c >= 1424 && c <= 1535) ? s.ReverseString() : s).ToList();
output.Reverse();
return string.Join(" ", output.ToArray());
}
private void DrawStringBoxRightToLeft(XGraphics gfx, string text, XFont font, XBrush brush, XRect rect)
{
List<string> words = text.Split(' ').ToList();
List<string> sentences = new List<string>();
while (words.Any())
{
while (gfx.MeasureString(string.Join(" ", sentences), font).Width < rect.Width && words.Any())
{
string s = words[0];
sentences.Add(s);
words.RemoveAt(0);
}
gfx.DrawString(string.Join(" ", sentences).RightToLeft(), font, brush, rect, XStringFormats.TopRight);
rect.Y += font.Height;
sentences.Clear();
}
}