RSCG – QuickConstructor
RSCG – QuickConstructor
name | QuickConstructor |
nuget | https://www.nuget.org/packages/QuickConstructor |
link | https://github.com/flavien/QuickConstructor |
author | Flavien Charlon |
Fast add constructors that are read only FIELDS
Has multiple other features
This is how you can use QuickConstructor .
The code that you start with is
01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 | < Project Sdk = "Microsoft.NET.Sdk" > < PropertyGroup > < OutputType >Exe</ OutputType > < TargetFramework >net7.0</ TargetFramework > < ImplicitUsings >enable</ ImplicitUsings > < Nullable >enable</ Nullable > </ PropertyGroup > < ItemGroup > < PackageReference Include = "QuickConstructor" Version = "1.0.5" /> </ ItemGroup > < PropertyGroup > < EmitCompilerGeneratedFiles >true</ EmitCompilerGeneratedFiles > < CompilerGeneratedFilesOutputPath >$(BaseIntermediateOutputPath)\GX</ CompilerGeneratedFilesOutputPath > </ PropertyGroup > </ Project > |
The code that you will use is
1 2 3 | using QuickConstructorDemo; var p = new Person( "Andrei" , "Ignat" ); |
01 02 03 04 05 06 07 08 09 10 11 12 | using QuickConstructor.Attributes; namespace QuickConstructorDemo; [QuickConstructor] internal partial class Person { private readonly string FirstName; private readonly string ? LastName; } |
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 | /// <auto-generated> /// This code was generated by the QuickConstructor source generator. /// </auto-generated> #nullable enable namespace QuickConstructorDemo { partial class Person { /// <summary> /// Initializes a new instance of the <see cref="Person" /> class. /// </summary> public Person( string @firstName, string ? @lastName) { if (@firstName == null ) throw new global::System.ArgumentNullException(nameof(@firstName)); this .@FirstName = @firstName; this .@LastName = @lastName; } } } |
Code and pdf at
https://ignatandrei.github.io/RSCG_Examples/v2/docs/QuickConstructor
Leave a Reply