mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-10 11:45:09 +00:00
18 lines
450 B
C#
18 lines
450 B
C#
|
using System;
|
||
|
using System.IO;
|
||
|
using System.Runtime.Serialization.Formatters.Binary;
|
||
|
|
||
|
public static class Extensions
|
||
|
{
|
||
|
public static T DeepClone<T>(this T obj)
|
||
|
{
|
||
|
using (MemoryStream stream = new MemoryStream())
|
||
|
{
|
||
|
BinaryFormatter formatter = new BinaryFormatter();
|
||
|
formatter.Serialize(stream, obj);
|
||
|
stream.Position = 0;
|
||
|
|
||
|
return (T)formatter.Deserialize(stream);
|
||
|
}
|
||
|
}
|
||
|
}
|