|
|
От: | undkit | |
| Дата: | 16.04.07 10:05 | ||
| Оценка: | |||
public class datarate
{
private int[] rate;
public int[] Rate
{
get { return rate; }
}
private int[] threshold;
public int[] Threshold
{
get { return threshold; }
set { threshold = value; }
}
public datarate(int[] r, int[] t)
{
rate = r;
threshold = t;
}
}