Fusion.Core.Shell.Invoker.PushAndExecute C# (CSharp) 메소드

PushAndExecute() 공개 메소드

public PushAndExecute ( string commandLine ) : object
commandLine string
리턴 object
		public object PushAndExecute ( string commandLine )
		{
			var cmd = Push( commandLine );
			ExecuteQueue( new GameTime(), CommandAffinity.Default, true );
			return cmd.Result;
		}