Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3.1/sources/HeuristicLab.Core/KeyValueEventArgs.cs @ 6866

Last change on this file since 6866 was 187, checked in by mkofler, 16 years ago

Added ItemDictionary and related classes (View, KeyValueEventArgs, EditKeyValueDialog) to the Core and Data projects as per Andreas' request.

File size: 452 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Text;
4
5namespace HeuristicLab.Core {
6  public class KeyValueEventArgs : EventArgs {
7
8    private IItem key;
9    public IItem Key {
10      get { return key; }
11    }
12
13    private IItem value;
14    public IItem Value {
15      get { return value; }
16    }
17
18    public KeyValueEventArgs(IItem key, IItem value) {
19      this.key = key;
20      this.value = value;
21    }
22  }
23}
Note: See TracBrowser for help on using the repository browser.