Fan.Sys.Uuid.makeBits C# (CSharp) Method

makeBits() public static method

public static makeBits ( long hi, long lo ) : Uuid
hi long
lo long
return Uuid
        public static Uuid makeBits(long hi, long lo)
        {
            return new Uuid(hi, lo);
        }