Initial Commit
This commit is contained in:
16
Common/Auxiliary/DoubleCollectionHelper.cs
Normal file
16
Common/Auxiliary/DoubleCollectionHelper.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Windows.Media;
|
||||
|
||||
namespace Microsoft.Research.DynamicDataDisplay.Common.Auxiliary
|
||||
{
|
||||
public static class DoubleCollectionHelper
|
||||
{
|
||||
public static DoubleCollection Create(params double[] collection)
|
||||
{
|
||||
return new DoubleCollection(collection);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user