WikiFunctions.Globals.Globals C# (CSharp) Method

Globals() static private method

static private Globals ( ) : System
return System
        static Globals()
        {
            /* Assembly.Load determines whether assembly can be loaded OK.
            * If AppDomain.CurrentDomain.GetAssemblies is used, this returns what assemblies are available,
            * which is not what we want since assemblies may be 'available' but not loadable for use */

            try
            {
                Assembly.Load("Microsoft.mshtml, Version=7.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a");
                mSHTMLAvailable = true;
            }
            catch
            {
            }
        }
Globals