GetValue() 공개 메소드

public GetValue ( double x ) : double
x double
리턴 double
예제 #1
0
파일: Delay.cs 프로젝트: ufcpp/UfcppSample
	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;
	}
예제 #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);
    }