Alpal94 / aforge

Automatically exported from code.google.com/p/aforge
Other
0 stars 0 forks source link

FilterInfo properties modifier change #293

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago

Change from:
public readonly string Name;
public readonly  string MonikerString;

To:
public string Name { get; private set; } 
public string MonikerString { get; private set; }

Previous code do not work with ListControl.DisplayMember and 
ListControl.ValueMember

Original issue reported on code.google.com by ARTombst...@gmail.com on 11 Apr 2012 at 2:01

GoogleCodeExporter commented 8 years ago
Updated FilterInfo class, so Name and MonikerString are no longer read only 
fields but read only properties.

Committed in revision 1685.

Original comment by andrew.k...@gmail.com on 11 Apr 2012 at 2:08

GoogleCodeExporter commented 8 years ago

Original comment by andrew.k...@gmail.com on 16 Jul 2013 at 9:52