Enum & Switch Case - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T07:26:25Z http://stackoverflow.com/feeds/question/838629 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/838629/enum-switch-case 2 Enum & Switch Case Xyz 2009-05-08T07:34:37Z 2009-06-02T10:02:45Z <p>Hi I am using enums converted to a string with a switch but it doesn't work. It gives compilation error: Cannot implicitly convert type 'userControl_commontop.UserType' to 'string'</p> <p>The code is:</p> <pre><code>private void CommonTopChangesnew(string usertype) { switch (usertype.Trim().ToUpper()) { case UserType.NORMAL : hlkSAD.Enabled = false; hlkMRTQuery.Enabled = false; hlkReqViewer.Enabled = false; hlkSendnotif.Enabled = false; break; case UserType.POWER : hlkSAD.Enabled = false; hlkReqViewer.Enabled = false; hlkSendnotif.Enabled = false; break; } } enum UserType { NORMAL, POWER, ADMINISTRATOR } </code></pre> http://stackoverflow.com/questions/838629/enum-switch-case/838643#838643 5 Answer by Shaul for Enum & Switch Case Shaul 2009-05-08T07:38:51Z 2009-05-08T07:46:17Z <p>The enumeration is not a string, any more than a constant <code>const int MY_VALUE = 1;</code> is a string.</p> <p>If you want to convert the enum values into a string, do:</p> <pre><code>case UserType.NORMAL.ToString(): </code></pre> <p>etc.</p> <p>Alternatively, you could change your string into an Enum:</p> <pre><code>switch ((UserType)Enum.Parse(usertype, typeof(UserType))) { ... } </code></pre> http://stackoverflow.com/questions/838629/enum-switch-case/838644#838644 3 Answer by Sani Huttunen for Enum & Switch Case Sani Huttunen 2009-05-08T07:39:01Z 2009-05-08T07:46:04Z <p>You should try this:</p> <pre><code>enum UserType { NORMAL, POWER, ADMINISTRATOR } private void CommonTopChangesnew(string usertype) { switch ((UserType)Enum.Parse(typeof(UserType), usertype, true)) { case UserType.NORMAL: hlkSAD.Enabled = false; hlkMRTQuery.Enabled = false; hlkReqViewer.Enabled = false; hlkSendnotif.Enabled = false; break; case UserType.POWER: hlkSAD.Enabled = false; hlkReqViewer.Enabled = false; hlkSendnotif.Enabled = false; break; } } </code></pre> http://stackoverflow.com/questions/838629/enum-switch-case/838649#838649 1 Answer by Cerebrus for Enum & Switch Case Cerebrus 2009-05-08T07:40:20Z 2009-05-08T07:40:20Z <p>Your function accepts a parameter of type string and then you use the same parameter to compare types belonging the Enum. Here lies the conflict.</p> <p>Your function should instead be :</p> <pre><code>private void CommonTopChangesnew(UserType usertype) { switch (usertype) { case UserType.NORMAL : hlkSAD.Enabled = false; hlkMRTQuery.Enabled = false; hlkReqViewer.Enabled = false; hlkSendnotif.Enabled = false; break; case UserType.POWER : hlkSAD.Enabled = false; hlkReqViewer.Enabled = false; hlkSendnotif.Enabled = false; break; } } </code></pre> http://stackoverflow.com/questions/838629/enum-switch-case/838654#838654 0 Answer by jclaes for Enum & Switch Case jclaes 2009-05-08T07:41:44Z 2009-05-08T07:41:44Z <p>You can't compare a String with an Enum.</p> <p>You should pass an Enum to your method.</p> http://stackoverflow.com/questions/838629/enum-switch-case/838658#838658 0 Answer by Klaw for Enum & Switch Case Klaw 2009-05-08T07:42:47Z 2009-05-08T07:42:47Z <p>Option 1: Change your CommonTopChangesnew to accept a UserType enum as a parameter</p> <p>or</p> <p>Option 2: Use Enum.Parse to convert your string to a UserType enum in your switch block:</p> <p>(UserType)Enum.Parse(typeof(UserType), usertype)</p> http://stackoverflow.com/questions/838629/enum-switch-case/838664#838664 2 Answer by amit for Enum & Switch Case amit 2009-05-08T07:44:34Z 2009-05-08T07:44:34Z <p>You could convert the userType parameter in to an enum value using this funtion:</p> <blockquote> <p>object Enum.Parse(System.Type enumType, string value, bool ignoreCase);</p> </blockquote> <p>as </p> <blockquote> <p>UserType utEnum = Enum.Parse(UserType , userType, true);</p> </blockquote> <p>and then you can call your switch statement as:</p> <blockquote> <p>switch (utEnum) { ... }</p> </blockquote>