System.Data.Common.ADP.GetAssemblyVersion C# (CSharp) Méthode

GetAssemblyVersion() static private méthode

static private GetAssemblyVersion ( ) : System.Version
Résultat System.Version
        static internal Version GetAssemblyVersion()
        {
            // NOTE: Using lazy thread-safety since we don't care if two threads both happen to update the value at the same time
            if (s_systemDataVersion == null)
            {
                s_systemDataVersion = new Version(ThisAssembly.InformationalVersion);
            }

            return s_systemDataVersion;
        }
ADP