WikiFunctions.Tools.OpenENArticleInBrowser C# (CSharp) Method

OpenENArticleInBrowser() public static method

Forces the loading of a page in En.Wiki Used for 'static' links to the english wikipedia
public static OpenENArticleInBrowser ( string title, bool userspace ) : void
title string
userspace bool
return void
        public static void OpenENArticleInBrowser(string title, bool userspace)
        {
            if (userspace)
                OpenURLInBrowser("https://en.wikipedia.org/wiki/User:" + WikiEncode(title));
            else
                OpenURLInBrowser("https://en.wikipedia.org/wiki/" + WikiEncode(title));
        }
Tools