Interface IParameterized<P>
An interface that describes a class or struct that defines a parameter set of the specified type.
Namespace: SpiceSharp.ParameterSets
Assembly: SpiceSharp.dll
Syntax
public interface IParameterized<out P> where P : IParameterSet, ICloneable<out P>
Type Parameters
Name | Description |
---|---|
P | The parameter set type. |
Remarks
This interface allows anyone to check whether a class defines a parameter set of the given type, e.g. for TryGetParameterSet<P>(out P).
Properties
Parameters
Gets the parameter set.
Declaration
P Parameters { get; }
Property Value
Type | Description |
---|---|
P | The parameter set. |