How to set multiple extension in Open File Dialog. For example i want to load an image file. So, OpenFileDialog should filter all image file.
dlg.Filter = "Image File|*.jpg";
But, It should be displayed all image files. ie. jpeg, bmp, tif, gif, png, etc. How do i do this.