GetValue() public method

public GetValue ( double x ) : double
x double
return double
Beispiel #1
0
	public object Clone()
	{
		Delay d = new Delay(this.buf.Count);
		for (int i = 0; i < this.buf.Count; ++i)
		{
			d.GetValue(this.buf[i]);
		}
		return d;
	}
Beispiel #2
0
    public object Clone()
    {
        Delay d = new Delay(this.buf.Count);

        for (int i = 0; i < this.buf.Count; ++i)
        {
            d.GetValue(this.buf[i]);
        }
        return(d);
    }