Caprica.VlcSharp.Info.Info C# (CSharp) Method

Info() private method

private Info ( ) : System
return System
        private Info()
        {
            Console.Error.WriteLine(APP_MSG);
            Console.Error.WriteLine(LICENSE_MSG);
            Console.Error.Flush();
            Assembly assembly = Assembly.GetExecutingAssembly();
            version = new VersionNumber(assembly.GetName().Version.ToString());
            Logger.Info("vlcsharp: {}", version != null ? version.ToString() : "<version not available>");
            Logger.Info("runtime: {} {}", assembly.ImageRuntimeVersion, Environment.Is64BitProcess ? "64-bit" : "32-bit");
            Logger.Info("os: {} {}", Environment.OSVersion.ToString(), Environment.Is64BitOperatingSystem ? "64-bit" : "32-bit");
        }