|  | RandGenBetaReset(Int32) Method | 
            Resets the underlying gamma random number generators with the 
            specified seed.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic bool Reset(
	int seed
)
Public Function Reset ( 
	seed As Integer
) As Boolean
public:
bool Reset(
	int seed
)
member Reset : 
        seed : int -> bool Parameters
- seed  Int32
- The seed to reset the generators with.
Return Value
Booleantrue if both are successful
 Remarks
RemarksThis method will succeed only if the following conditions are 
            met:
            1. The uniform generator delegates are an instance method, i.e. the Target 
               property of the Delegate class returns a non-null reference.
            2. The object reference thus obtained has a method named Initialize that
               returns void and takes a single integer argument for the Initialize
               method,
 See Also
See Also