private static void HandleFilePath() { var filePath = (FilePath)Program.serializer.Deserialize(Client.ClientStream); int iterations = filePath.Iterations; string message = filePath.Path; string unwrappedScript = InputParser.ExtractScript(message); string wrappedScript = InputParser.WrapScript(unwrappedScript); Program.RunMacro(wrappedScript, iterations); }