System.Threading.Atomics.MemoryModelHelpers.ToInt32 C# (CSharp) Method

ToInt32() public static method

public static ToInt32 ( this target ) : int
target this
return int
        public static int ToInt32(this bool target)
        {
            return target ? 1 : 0;
        }
    }