I need a pair of int
s to denote a point. But UWP's Point uses float
s.
Is there some type of built in pair of int
s so I don't have to create a custom one? If it's Height
and Width
that's fine. Just as long as it's two int
s.
If all you need is a single object with the two int
values you can use Tuple<int, int>
: https://learn.microsoft.com/en-us/dotnet/api/system.tuple-2.