A TenneySoftware Class Library
ExtendedRandom Constructor
NamespacesTenneySoftware.ExtendedFunctionsExtendedRandomExtendedRandom()()()
Default constructor for ExtendedRandom. This will generate a seed based on system time.
Declaration Syntax
C#Visual BasicVisual Basic UsageVisual C++J#JScript
public ExtendedRandom()
Public Sub New
Dim instance As New ExtendedRandom()
public:
ExtendedRandom()
public ExtendedRandom()
public function ExtendedRandom()
TenneySoftware.ExtendedFunctions.ExtendedRandom = function();
Examples
CopyC#
 using System;
using TenneySoftware;
using TenneySoftware.ExtendedFunctions;

namespace Library_Test {
    class Program {
        public static ExtendedRandom rnd = new ExtendedRandom();
        static void Main(string[] args) {
            Console.WriteLine("Seed: " + rnd.Seed);
            Console.WriteLine("Rnd: " + rnd.Next(100));
            Console.Read();
            /*
            Output:
            Seed: 706661452    (sample as number will vary)
            Rnd: 81            (sample as number will vary) 
             */
        }
    }
}
See Also

Assembly: TenneySoftware (Module: TenneySoftware) Version: 0.0.3067.16853 (0.1.0.0)