SharpMod.Messages.MessageFunctions.ClientPrintEachLine C# (CSharp) Method

ClientPrintEachLine() public static method

Splits the string in an array (determines boundaries by \n and \r) and prints each string
public static ClientPrintEachLine ( this player, string text ) : void
player this /// Player ///
text string /// String with \r and \n for line determination. ///
return void
        public static void ClientPrintEachLine(this Player player, string text)
        {
            player.ClientPrint(text.Split(new char[] {'\n', '\r'}));
        }
MessageFunctions