RSCG – CommonCodeGenerator
name | CommonCodeGenerator |
nuget | https://www.nuget.org/packages/CommonCodeGenerator/ |
link | https://github.com/usausa/common-code-generator |
author | yamaokunousausa |
Generating ToString from classes
This is how you can use CommonCodeGenerator .
The code that you start with is
01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 | < Project Sdk = "Microsoft.NET.Sdk" > < PropertyGroup > < OutputType >Exe</ OutputType > < TargetFramework >net8.0</ TargetFramework > < ImplicitUsings >enable</ ImplicitUsings > < Nullable >enable</ Nullable > </ PropertyGroup > < ItemGroup > < PackageReference Include = "CommonCodeGenerator" Version = "0.2.0" /> < PackageReference Include = "CommonCodeGenerator.SourceGenerator" Version = "0.2.0" > < PrivateAssets >all</ PrivateAssets > < IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</ IncludeAssets > </ PackageReference > </ ItemGroup > < PropertyGroup > < EmitCompilerGeneratedFiles >true</ EmitCompilerGeneratedFiles > < CompilerGeneratedFilesOutputPath >$(BaseIntermediateOutputPath)\GX</ CompilerGeneratedFilesOutputPath > </ PropertyGroup > </ Project > |
The code that you will use is
1 2 3 4 5 6 7 | using ToStringData; Console.WriteLine( "Hello, World!" ); Person person = new (); person.FirstName = "Andrei" ; person.LastName = "Ignat" ; Console.WriteLine(person.ToString()); |
01 02 03 04 05 06 07 08 09 10 11 12 | using CommonCodeGenerator; namespace ToStringData; [GenerateToString] internal partial class Person { public string ? FirstName { get ; set ; } public string ? LastName { get ; set ; } [IgnoreToString] public int Age { get ; set ; } } |
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 | // <auto-generated /> #nullable disable namespace ToStringData { partial class Person { public override string ToString() { var handler = new global::System.Runtime.CompilerServices.DefaultInterpolatedStringHandler(0, 0, default , stackalloc char [256]); handler.AppendLiteral( "Person " ); handler.AppendLiteral( "{ " ); handler.AppendLiteral( "FirstName = " ); handler.AppendFormatted(FirstName); handler.AppendLiteral( ", " ); handler.AppendLiteral( "LastName = " ); handler.AppendFormatted(LastName); handler.AppendLiteral( " }" ); return handler.ToStringAndClear(); } } } |
Code and pdf at
https://ignatandrei.github.io/RSCG_Examples/v2/docs/CommonCodeGenerator
Leave a Reply