A marker interface used to indicate that an
IDistribution<TResult> is portable - i.e. reproducible regardless of the machine architecture or runtime. Produces portable values random of TResult.Syntax
public interface IPortableDistribution<TResult> : IDistribution<TResult>Remarks
Implementations are immutable and therefore thread safe. Results are also reproducible within the same assembly version.
Type Parameters
| Name | Description |
|---|---|
| TResult | The type that is produced by this distribution. |