End of the day push. Does not compile

This commit is contained in:
2023-04-26 16:52:51 +02:00
parent 3291a3c18b
commit d1eb1720a2
9 changed files with 223 additions and 15 deletions
+12
View File
@@ -293,5 +293,17 @@ namespace Test_Merge
return d[string1.Length, string2.Length];
}
public virtual string ToJSON()
{
string result = "";
result += "\"" + Name + "\"" + ":{" + Environment.NewLine;
result += "\t" + "\"x\":" + Bounds.X + "," + Environment.NewLine;
result += "\t" + "\"y\":" + Bounds.Y + "," + Environment.NewLine;
result += "\t" + "\"width\":" + Bounds.Width + Environment.NewLine;
result += "}";
return result;
}
}
}