``` c# enum Example : int { None = 0, FooBar = 1, // etc. } ``` In this case the int should not be replaced by Int32 as that will generate an invalid C# program.
In this case the int should not be replaced by Int32 as that will generate an invalid C# program.