Я пытаюсь получить значения возвращаемого объекта с помощью метода отражения PropertyInfo.GetValue()
, который содержит объект одного из следующих классов:
Class NDataSeriesDouble: NDataSeries<double>
{}
Class NDataSeriesString: NDataSeries<string>
{}
// код для получения значения списка во время выполнения
GetNthValueOfSereis(int n)
{
NHitTestResult hitTestResult = chartControl.HitTest(mouseXPoint, mouseYPoint)
// Get the sereis type object from Base class of this.
Type seriesType = hitTestResult.Series.GetType();
object seriesValues= seriesType.GetProperty("Values")
.GetValue(hitTestResult.Series, null)
**///How i get value from this object seriesValues**
}
объект seriesValues содержит объект класса NDataSeriesDouble или NDataSeriesString.
Любое предложение будет оценено.
Заранее спасибо.