RSCG Example–TimeBombComment–part 27
name | RSCG_TimeBombComment |
nuget |
https://www.nuget.org/packages/RSCG_TimeBombComment/ |
link | http://msprogrammer.serviciipeweb.ro/category/roslyn/ |
author | Andrei Ignat |
This will generate an error from the comment after a certain date
The code that you start with is
1 2 3 4 5 6 7 | //TB: 2021-09-13 this is a comment transformed into an error //TB: and this is a warning //TB: 9999-12-30 and this will not appear Console.WriteLine( "See the TB comment above ? " ); |
The code that you will use is
1 | //TB: yyyy-MM-dd this is a comment transformed into an error |
The code that is generated is
1 2 3 | 2>src\RSCG_TimeBombComment\Console_TimeBombComment\Program.cs(9,13,9,73): error TB: this is a comment transformed into an error 2>src\RSCG_TimeBombComment\Console_TimeBombComment\Program.cs(10,13,10,40): warning TB: and this is a warning |
Example Code: https://github.com/ignatandrei/RSCG_Examples/tree/main/TimeBombComment
Leave a Reply