BlogEngine.Core.BlogSettings.Version C# (CSharp) Метод

Version() публичный Метод

Returns the BlogEngine.NET version information.
The current version is determined by extracting the build version of the BlogEngine.Core assembly.
public Version ( ) : string
Результат string
        public string Version()
        {
            return version ?? (version = this.GetType().Assembly.GetName().Version.ToString());
        }