Override ToString on more UIX classes

This commit is contained in:
Yoshi Askharoun
2023-05-26 00:00:51 -05:00
parent ea08399992
commit 2a8f203df5
15 changed files with 41 additions and 34 deletions
+1 -1
View File
@@ -73,7 +73,7 @@ namespace Microsoft.Iris.Render
public override int GetHashCode() => this.Width ^ this.Height;
public override string ToString() => base.ToString();
public override string ToString() => $"({Width} x {Height})";
public Point ToPoint() => new Point(this.Width, this.Height);