Changeset 9737 for stable/HeuristicLab.Data/3.3/Interfaces
- Timestamp:
- 07/23/13 15:12:10 (11 years ago)
- Location:
- stable
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/trunk/sources merged: 9657,9692,9695
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Data/3.3/Interfaces/IStringConvertibleArray.cs
r9456 r9737 21 21 22 22 using System; 23 using System.Collections.Generic; 23 24 using HeuristicLab.Common; 24 25 … … 26 27 public interface IStringConvertibleArray : IContent { 27 28 int Length { get; set; } 29 IEnumerable<string> ElementNames { get; set; } 28 30 29 31 bool ReadOnly { get; } … … 33 35 bool SetValue(string value, int index); 34 36 37 event EventHandler ElementNamesChanged; 35 38 event EventHandler<EventArgs<int>> ItemChanged; 36 39 event EventHandler Reset;
Note: See TracChangeset
for help on using the changeset viewer.