source:
branches/HeuristicLab.Problems.GrammaticalOptimization/DynamicDataDisplay/Common/Auxiliary/DoubleCollectionHelper.cs
@
13792
Last change on this file since 13792 was 12503, checked in by aballeit, 9 years ago | |
---|---|
File size: 373 bytes |
Rev | Line | |
---|---|---|
[12503] | 1 | using System; |
2 | using System.Collections.Generic; | |
3 | using System.Linq; | |
4 | using System.Text; | |
5 | using System.Windows.Media; | |
6 | ||
7 | namespace Microsoft.Research.DynamicDataDisplay.Common.Auxiliary | |
8 | { | |
9 | public static class DoubleCollectionHelper | |
10 | { | |
11 | public static DoubleCollection Create(params double[] collection) | |
12 | { | |
13 | return new DoubleCollection(collection); | |
14 | } | |
15 | } | |
16 | } |
Note: See TracBrowser
for help on using the repository browser.