- Timestamp:
- 09/21/18 09:18:49 (6 years ago)
- Location:
- branches/2943_MOBasicProblem_MOCMAES/HeuristicLab.Data
- Files:
-
- 1 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/2943_MOBasicProblem_MOCMAES/HeuristicLab.Data/3.3/Interfaces/IValueTypeArray.cs
r15583 r16171 44 44 } 45 45 46 public interface IValueTypeArray<T> : IValueTypeArray, I Enumerable<T> where T : struct {47 T this[int index] { get; set; }46 public interface IValueTypeArray<T> : IValueTypeArray, IReadOnlyList<T> where T : struct { 47 new T this[int index] { get; set; } 48 48 } 49 49 }
Note: See TracChangeset
for help on using the changeset viewer.