Auto generate Clone method using C# Source Generator
There are times you want to make a clone of an object. You can implement a clone method, but when a developer adds a new Field or Property the clone method should be changed too. Another way is to use reflection which is not performant. This source generator saves your time by generating the boilerplate code for cloning an object.
You should install Cloneable with NuGet:
Install-Package Cloneable
Or via the .NET Core command line interface:
dotnet add package Cloneable
Either commands, from Package Manager Console or .NET Core CLI, will download and install Cloneable and all required dependencies.
You can add clone method to a class by making it partial and adding the attribute Cloneable
on top of it. An example is provided in Cloneable.Sample project.
Source generators are introduced in dotnet 5.0. So make sure to have Visual Studio 16.8 or dotnet 5.0 sdk installed.
Here is a simple example:
[Cloneable]
public partial class Foo
{
public string A { get; set; }
public int B { get; set; }
}
For more examples please visit the sample project.