BlogEngine.Core.BlogSettings.Version C# (CSharp) Method

Version() public method

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