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

Gets the value for a given element in this row.
public GetValue ( int columnIndex ) : double
columnIndex int The column index of an element.
Результат double
        /// <summary>
        ///   Gets a value from the array.
        /// </summary>
        ///
        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);
        }