Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ObjectCloner.cs « System « tests « Common « src - github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1aa1f2f4fa0e4e056dbed75d676d95fbe97b93c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

using System.Diagnostics;
using System.Reflection;

namespace System
{
    // Provides methods for making shallow/deep clones of objects.

    public static class ObjectCloner
    {
        // This should only be used for reference types.
        // Simply doing T copied = value will give you the same effect with a value type.
        public static T MemberwiseClone<T>(T obj) where T : class
        {
            Debug.Assert(obj != null);

            // Invoke MemberwiseClone() via reflection to create a shallow copy of the object
            MethodInfo memberwiseClone = typeof(object)
                .GetTypeInfo()
                .GetDeclaredMethod("MemberwiseClone");
            object cloned = memberwiseClone.Invoke(obj, parameters: Array.Empty<object>());

            Debug.Assert(cloned != null && !object.ReferenceEquals(obj, cloned));
            Debug.Assert(obj.GetType() == cloned.GetType());
            return (T)cloned;
        }
    }
}