Ask Your Question
0

How to display the output of C# Medallion.Shell Filter in the console?

asked 2023-04-29 23:17:25 +0000

qstack gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2023-04-29 23:20:01 +0000

nofretete gravatar image

To display the output of C# Medallion.Shell Filter in the console, you need to use the stdOut property of the CommandResult object. Here is an example:

using Medallion.Shell;
using System;

class Program
{
    static void Main(string[] args)
    {
        Command cmd = Command.Run("ls");
        CommandResult result = cmd.Result;
        Console.WriteLine(result.StdOut);
    }
}

In this example, we are running the ls command and storing the result in the result variable. We then print the StdOut property of the result object in the console.

You can replace the ls command with any other command you want to filter and display the output in the console.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-04-29 23:17:25 +0000

Seen: 7 times

Last updated: Apr 29 '23