'how to open "how do you want to open this file" dialog in c#?

I would like to open the following dialog for a file in c#

file dialog

Some post suggest Process.Start

    private void button1_Click(object sender, EventArgs e)
    {
        Process.Start(@"d:\1.abc");
    }

But it doesn't work. It raise an exception:

"The specified executable is not a valid application for this OS platform"

I want to open "how do you want to open this file" dialog with or without a standard application suitable for that file type.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source