Enum & Switch Case - Stack Overflow most recent 30 from stackoverflow.com2009-12-12T07:26:25Zhttp://stackoverflow.com/feeds/question/838629http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/838629/enum-switch-case2Enum & Switch CaseXyz2009-05-08T07:34:37Z2009-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#8386435Answer by Shaul for Enum & Switch CaseShaul2009-05-08T07:38:51Z2009-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#8386443Answer by Sani Huttunen for Enum & Switch CaseSani Huttunen2009-05-08T07:39:01Z2009-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#8386491Answer by Cerebrus for Enum & Switch CaseCerebrus2009-05-08T07:40:20Z2009-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#8386540Answer by jclaes for Enum & Switch Casejclaes2009-05-08T07:41:44Z2009-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#8386580Answer by Klaw for Enum & Switch CaseKlaw2009-05-08T07:42:47Z2009-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#8386642Answer by amit for Enum & Switch Caseamit2009-05-08T07:44:34Z2009-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>