Server.Commands.DecorationEntry.Pop C# (CSharp) Méthode

Pop() public méthode

public Pop ( string &v, string &line ) : void
v string
line string
Résultat void
		public void Pop( out string v, ref string line )
		{
			int space = line.IndexOf( ' ' );

			if ( space >= 0 )
			{
				v = line.Substring( 0, space++ );
				line = line.Substring( space );
			}
			else
			{
				v = line;
				line = "";
			}
		}
	}
DecorationEntry