Added constructor to System.Version
authorHannah Zhang <t-hazhan@microsoft.com>
Fri, 19 Aug 2016 17:22:17 +0000 (10:22 -0700)
committerHannah Zhang <t-hazhan@microsoft.com>
Fri, 19 Aug 2016 17:22:17 +0000 (10:22 -0700)
Commit migrated from https://github.com/dotnet/coreclr/commit/84854a6131dd88ae36cdc91929a9f52abce43665

src/coreclr/src/mscorlib/model.xml
src/coreclr/src/mscorlib/ref/mscorlib.cs

index 6c3a2f4..1dd65ad 100644 (file)
       <Member Name="#ctor(System.Int32,System.Int32,System.Int32)" />
       <Member Name="#ctor(System.Int32,System.Int32,System.Int32,System.Int32)" />
       <Member Name="#ctor(System.String)" />
+      <Member Name="#ctor" />
       <Member Name="Clone" />
       <Member Name="CompareTo(System.Object)" />
       <Member Name="CompareTo(System.Version)" />
index ae917bf..cd382f1 100644 (file)
@@ -3904,6 +3904,7 @@ namespace System
         public Version(int major, int minor, int build) { }
         public Version(int major, int minor, int build, int revision) { }
         public Version(string version) { }
+        public Version() { }
         public int Build { get { throw null; } }
         public int Major { get { throw null; } }
         public short MajorRevision { get { throw null; } }