Nemerle.VisualStudio.Project.NemerleProjectNode.GetFormatList C# (CSharp) Method

GetFormatList() public method

Creates the format list for the open file dialog
public GetFormatList ( string &formatlist ) : int
formatlist string The formatlist to return
return int
        public override int GetFormatList(out string formatlist)
        {
            formatlist = string.Format(
                CultureInfo.CurrentCulture, SR.GetString(SR.ProjectFileExtensionFilter), "\0", "\0");

            return VSConstants.S_OK;
        }