17 lines
341 B
C#
17 lines
341 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Windows;
|
|
|
|
namespace Microsoft.Research.DynamicDataDisplay.Common.Auxiliary
|
|
{
|
|
internal static class SizeHelper
|
|
{
|
|
public static Size CreateInfiniteSize()
|
|
{
|
|
return new Size(Double.PositiveInfinity, Double.PositiveInfinity);
|
|
}
|
|
}
|
|
}
|