I have a NT indicator I am trying to convert to MT, and wondered if someone would be willing to give me a couple tips on some base class members I do not understand.
Hoping in the affirmative, I'll start with this:
Inside the class are some member functions that look like this:
[Browsable(false)]
[XmlIgnore]
public DataSeries aboveR1
{
get
{
return base.Values[1];
}
}
[Browsable(false)]
[XmlIgnore]
public DataSeries aboveS1
{
get
{
return base.Values[5];
}
}
[Browsable(false)]
[XmlIgnore]
public DataSeries belowR1
{
get
{
return base.Values[2];
}
}
[Browsable(false)]
[XmlIgnore]
public DataSeries belowS1
{
get
{
return base.Values[6];
}
}
[Browsable(false)]
[XmlIgnore]
public DataSeries midLOW
{
get
{
return base.Values[4];
}
}
[Browsable(false)]
[XmlIgnore]
public DataSeries midUP
{
get
{
return base.Values[3];
}
}
[Browsable(false)]
[XmlIgnore]
public DataSeries r2
{
get
{
return base.Values[0];
}
}
[Browsable(false)]
[XmlIgnore]
public DataSeries s2
{
get
{
return base.Values[7];
}
}
First off, I do not know what the "DataSeries" type returns exactly, and secondly what all the indexed "base.Values[]" mean.
Could someone explain this to me please, or maybe if you can send me the definition of the base class I could figure it out (?)
Thank you in advance!
PS: If there is a link to a tutorial / manual that explains all this well, please don't hesitate to send :-)

Comment