Changeset 14083 for trunk/sources/HeuristicLab.Data/3.3/ValueTypeArray.cs
- Timestamp:
- 07/15/16 13:26:45 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Data/3.3/ValueTypeArray.cs
r14082 r14083 146 146 } 147 147 148 public T[ ,] CloneAsArray() {148 public T[] CloneAsArray() { 149 149 //mkommend: this works because T must be a value type (struct constraint); 150 return (T[ ,])array.Clone();150 return (T[])array.Clone(); 151 151 } 152 152
Note: See TracChangeset
for help on using the changeset viewer.