- Timestamp:
- 11/03/09 17:10:15 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.MainForm.Test/3.2/FormView2.cs
r2458 r2464 10 10 11 11 namespace HeuristicLab.MainForm.Test { 12 public partial class FormView2 : ViewBase <IEnumerable> {12 public partial class FormView2 : ViewBase, IView<IEnumerable> { 13 13 private int[] array; 14 14 public FormView2() { 15 15 InitializeComponent(); 16 16 } 17 18 #region IView<IEnumerable> Members 19 20 public void View(IEnumerable item) { 21 throw new NotImplementedException(); 22 } 23 24 public IEnumerable Item { 25 get { throw new NotImplementedException(); } 26 } 27 28 #endregion 17 29 } 18 30 }
Note: See TracChangeset
for help on using the changeset viewer.