OpenStory.Common.AtomicInteger.AtomicInteger C# (CSharp) Method

AtomicInteger() public method

Initializes a new instance of the AtomicInteger class with the given value.
public AtomicInteger ( int initialValue ) : System
initialValue int The initial value.
return System
        public AtomicInteger(int initialValue)
        {
            this.value = initialValue;
        }