UWP 中是否有表示两个“int”的类型?

Is there a Type to denote two 'int's in UWP?

我需要一对 int 来表示一个点。但是 UWP 的 Point 使用 floats.

是否有某种内置的 int 对,这样我就不必创建一个自定义的?如果是 HeightWidth 就好了。只要是两个 ints.

如果您只需要一个具有两个 int 值的对象,您可以使用 Tuple<int, int>https://docs.microsoft.com/en-us/dotnet/api/system.tuple-2.