You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser.
-
R
private string Reflect(string mirrorId)
{
mirrorId = mirrorId.Remove(0, 1);
StringBuilder fileId = new StringBuilder();
foreach (char c in mirrorId)
{
if (c >= '0' && c <= '9')
{...