fCraft.Color.IrcToMinecraftColors C# (CSharp) Method

IrcToMinecraftColors() private method

private IrcToMinecraftColors ( [ input ) : string
input [
return string
        public static string IrcToMinecraftColors( [NotNull] string input ) {
            if ( input == null )
                throw new ArgumentNullException( "input" );
            StringBuilder sb = new StringBuilder( input );
            IrcToMinecraftColors( sb );
            return sb.ToString();
        }

Same methods

Color::IrcToMinecraftColors ( [ sb ) : void