は私がオブジェクト以下のクラスのいずれかが含まれてい反射のPropertyInfo.GetValue()
方法を通じて返されるオブジェクトの値を取得しようとしています:UnderlyingSystemTypeクラスにオブジェクトを動的にキャストする方法
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クラスオブジェクトが含まれます。
ご意見をお寄せください。
ありがとうございました。
コメントを投稿する –
投票が遅れた人は誰もが書かれた書式の問題であると考えています。 – Ian
このライブラリは私によって作られたものではありません。 –