SoundLibrary.Mathematics.Function.Variable.GetValue C# (CSharp) 메소드

GetValue() 공개 메소드

public GetValue ( ) : ValueType
리턴 System.ValueType
		public override ValueType GetValue(params Parameter[] x)
		{
			foreach(Parameter p in x)
			{
				if(p.x.Equals(this))
				{
					return p.val;
				}
			}
			return 0; //! エラー
		}