RSGC-Enum-part 3
name | Enum |
nuget |
https://www.nuget.org/packages/AOPMethodsCommon/ |
link | http://msprogrammer.serviciipeweb.ro/category/roslyn/ |
author | Andrei Ignat |
This will generate code to fast parsing a int or a string to an enum
The code that you start with is
01 02 03 04 05 06 07 08 09 10 11 12 13 | [AutoEnum(template = EnumMethod.GenerateExtensionCode)] public enum MathematicalOperation { None=0, Add=1, Multiplication=2 } |
The code that you will use is
1 2 3 4 5 | var fromInt = enumMathematicalOperation.ParseExactMathematicalOperation(1); var fromString = enumMathematicalOperation.ParseExactMathematicalOperation( "add" ); Console.WriteLine(fromInt + "-" +fromString); |
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 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 | [GeneratedCode( "AOPMethods" , "" )] [CompilerGenerated] public static partial class enumMathematicalOperation{ /* public static int idMathematicalOperation(){ System.Diagnostics.Debugger.Break(); return 1; } */ public static RSCG_Enum.MathematicalOperation ParseExactMathematicalOperation( this long value, RSCG_Enum.MathematicalOperation? defaultValue = null ){ if (0 == value) return RSCG_Enum.MathematicalOperation.None; if (1 == value) return RSCG_Enum.MathematicalOperation.Add; if (2 == value) return RSCG_Enum.MathematicalOperation.Multiplication; if (defaultValue != null ) return defaultValue.Value; throw new ArgumentException( "cannot find " + value + " for RSCG_Enum.MathematicalOperation " ); } public static RSCG_Enum.MathematicalOperation ParseExactMathematicalOperation( this string value, RSCG_Enum.MathematicalOperation? defaultValue = null ){ //trying to see if it is a value inside //if(!string.IsNullOrWhiteSpace) if ( long .TryParse(value, out long valueParsed)){ return ParseExactMathematicalOperation(valueParsed); } if (0== string .Compare( "None" , value, StringComparison.InvariantCultureIgnoreCase)) return RSCG_Enum.MathematicalOperation.None; if (0== string .Compare( "Add" , value, StringComparison.InvariantCultureIgnoreCase)) return RSCG_Enum.MathematicalOperation.Add; if (0== string .Compare( "Multiplication" , value, StringComparison.InvariantCultureIgnoreCase)) return RSCG_Enum.MathematicalOperation.Multiplication; if (defaultValue != null ) return defaultValue.Value throw new ArgumentException( "cannot find " + value + " for RSCG_Enum.MathematicalOperation " ); } /* */ } |
Example Code: https://github.com/ignatandrei/RSCG_Examples/tree/main/Enum
Leave a Reply