¡@

Home 

c# Programming Glossary: eco

Casting ints to enums in C#

http://stackoverflow.com/questions/1758321/casting-ints-to-enums-in-c-sharp

enum Colour Red 1 Green 2 Blue 3 Now if you write Colour eco eco Colour 17 The compiler thinks that ™s fine. And the runtime.. Colour Red 1 Green 2 Blue 3 Now if you write Colour eco eco Colour 17 The compiler thinks that ™s fine. And the runtime too... in scenarios like this void DoSomethingWithColour Colour eco do something to eco. In a strong typed language like C# I would..