OperatingSystem.Clone Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Creates an OperatingSystem object that is identical to this instance.
Assembly: mscorlib (in mscorlib.dll)
The following code example illustrates the use of the Clone method to make a copy of an OperatingSystem object. The clone is compared with the original object to show that they are not the same object.
// Example for the OperatingSystem.Clone method. using System; class Example { // Copy, clone, and duplicate an OperatingSystem object. static void CopyOperatingSystemObjects(System.Windows.Controls.TextBlock outputBlock) { // The Version object does not need to correspond to an // actual OS version. Version verMMBVer = new Version(5, 6, 7, 8); OperatingSystem opCreate1 = new OperatingSystem(PlatformID.Win32NT, verMMBVer); // Create another OperatingSystem object with the same // parameters as opCreate1. OperatingSystem opCreate2 = new OperatingSystem(PlatformID.Win32NT, verMMBVer); // Clone opCreate1 and copy the opCreate1 reference. OperatingSystem opClone = (OperatingSystem)opCreate1.Clone(); OperatingSystem opCopy = opCreate1; // Compare the various objects for equality. outputBlock.Text += String.Format("{0,-50}{1}", "Is the second object the same as the original?", opCreate1.Equals(opCreate2)) + "\n"; outputBlock.Text += String.Format("{0,-50}{1}", "Is the object clone the same as the original?", opCreate1.Equals(opClone)) + "\n"; outputBlock.Text += String.Format("{0,-50}{1}", "Is the copied object the same as the original?", opCreate1.Equals(opCopy)) + "\n"; } public static void Demo(System.Windows.Controls.TextBlock outputBlock) { outputBlock.Text += String.Format( "This example of OperatingSystem.Clone( ) " + "generates the following output.\n") + "\n"; outputBlock.Text += String.Format( "Create an OperatingSystem object, and then " + "create another object with the \n" + "same parameters. Clone and copy the original " + "object, and then compare \n" + "each object with the original " + "using the Equals( ) method. Equals( ) \n" + "returns true only when both " + "references refer to the same object.\n") + "\n"; CopyOperatingSystemObjects(outputBlock); } } /* This example of OperatingSystem.Clone( ) generates the following output. Create an OperatingSystem object, and then create another object with the same parameters. Clone and copy the original object, and then compare each object with the original using the Equals( ) method. Equals( ) returns true only when both references refer to the same object. Is the second object the same as the original? False Is the object clone the same as the original? False Is the copied object the same as the original? True */
Show: