Corlib.Threading.AtomicUInt64.Create C# (CSharp) Method

Create() public static method

Creates a new value starting at 0
public static Create ( ) : AtomicUInt64
return AtomicUInt64
        public static AtomicUInt64 Create()
        {
            return new AtomicUInt64 () { Value = 0 };
        }