Accord.Controls.ConfusionMatrixPropertyDescriptor.GetValue C# (CSharp) Метод

GetValue() публичный Метод

Gets a value from the array.
public GetValue ( object component ) : object
component object
Результат object
        public override object GetValue(object component)
        {
            try
            {
                ConfusionMatrixRowView rowView = component as ConfusionMatrixRowView;
                return rowView.GetValue(ColumnIndex);
            }
            catch (ArgumentException e)
            {
                Debug.WriteLine(e);
            }
            catch (IndexOutOfRangeException e)
            {
                Debug.WriteLine(e);
            }

            return null;
        }