System.Threading.ClientInterlocked.Read C# (CSharp) Method

Read() public static method

public static Read ( long &location ) : long
location long
return long
        public static long Read(ref long location)
        {
            return Interlocked.Read(ref location);
        }