RSGC-Constructor – Deconstructor – part 5
name | CopyConstructor + Deconstructor |
nuget |
https://www.nuget.org/packages/AOPMethodsCommon/ |
link | http://msprogrammer.serviciipeweb.ro/category/roslyn/ |
author | Andrei Ignat |
This will generate code for a POCO to generate copy constructor and deconstructor
The code that you start with is
01 02 03 04 05 06 07 08 09 10 11 | [AutoMethods(template = TemplateMethod.CustomTemplateFile, CustomTemplateFileName = "CopyConstructorDestructor.txt" )] partial class Person { public string FirstName { get ; set ; } public string LastName { get ; set ; } } |
The code that you will use is
01 02 03 04 05 06 07 08 09 10 11 12 13 | var pOldPerson = new Person(); pOldPerson.FirstName = "Andrei" ; pOldPerson.LastName = "Ignat" ; var newPerson = new Person(pOldPerson); Console.WriteLine(newPerson.FirstName); var (_, last) = newPerson; Console.WriteLine(last); |
The code that is generated is
01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | public Person (){ OnConstructor(); } public Person(IPerson other): base (){ BeforeCopyConstructor(other); CopyPropertiesFrom(other); AfterCopyConstructor(other); } public void CopyPropertiesFrom(IPerson other){ this .FirstName = other.FirstName; this .LastName = other.LastName; } public void Deconstruct( out string FirstName, out string LastName) { FirstName = this .FirstName; LastName = this .LastName; } |
Example Code: https://github.com/ignatandrei/RSCG_Examples/tree/main/CopyConstructor
Leave a Reply