SoundLibrary.Mathematics.Function.Variable.GetValue C# (CSharp) Méthode

GetValue() public méthode

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