fCraft.FlatfilePlayerDBProvider.MassRankChange C# (CSharp) Method

MassRankChange() public method

Changes ranks of all players in one transaction.
public MassRankChange ( Player player, Rank from, Rank to, string reason ) : void
player Player
from Rank
to Rank
reason string
return void
        public void MassRankChange( Player player, Rank from, Rank to, string reason ) {
            if( player == null ) throw new ArgumentNullException( "player" );
            if( from == null ) throw new ArgumentNullException( "from" );
            if( to == null ) throw new ArgumentNullException( "to" );
            if( reason == null ) throw new ArgumentNullException( "reason" );
            throw new NotImplementedException();
        }