Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8289797
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T12:36:21+00:00 2026-06-08T12:36:21+00:00

I have the following C# code: AnimalTypeEnum animal; string s = Console.ReadLine(); switch (s.ToLower())

  • 0

I have the following C# code:

AnimalTypeEnum animal;
string s = Console.ReadLine();
switch (s.ToLower())
{
case "dog":
    animal = AnimalTypeEnum.DOG;
    break;
case "cat":
    animal = AnimalTypeEnum.CAT;
    break;
case "rabbit":
    animal = AnimalTypeEnum.RABBIT;
    break;
}

Console.WriteLine(animal); #compiler error here

I get this error on the last line: Use of unassigned local variable 'animal'. I know that it’s because animal may not have a value depending on the user input, so how do I fix that?

Ideally I’d like to show an error message if an unknown animal type was entered and make the user input the value again.

Thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T12:36:22+00:00Added an answer on June 8, 2026 at 12:36 pm

    Here’s one way to fix it, using recursive calls instead of needing to catch and throw exceptions, or use a loop (loops in a case like this obfuscate the meaning in my opinion; too much about how you’re doing it instead of what you’re doing):

    private static AnimalTypeEnum GetAnimalFromInput()
    {
        AnimalTypeEnum animal;
        string s = Console.ReadLine();
        switch (s.ToLower())
        {
            case "dog":
                animal = AnimalTypeEnum.DOG;
                break;
            case "cat":
                animal = AnimalTypeEnum.CAT;
                break;
            case "rabbit":
                animal = AnimalTypeEnum.RABBIT;
                break;
            default:
                Console.WriteLine(s + " is not valid, please try again");
                animal = GetAnimalFromInput();
                break;
        }
        return animal;
    }
    static void Main(string[] args)
    {
        AnimalTypeEnum animal = GetAnimalFromInput();
    
        Console.WriteLine(animal);
    }
    

    I’ll also note that it’s good practice to refactor your switch into an if/else chain, using if (s.Equals("dog", StringComparison.CurrentCultureIgnoreCase)) (or the appropriate case-insensitive comparison) to keep it working in other cultures. Of course, this may not apply to your scenario (e.g. test/homework app, or something that will only possibly be used in your culture).


    Update: Thanks to Mennan Kara for the idea, if your values (e.g. "dog") will always match the enum’s values (e.g. DOG), then you can use Enum.TryParse to improve your code:

    private static AnimalTypeEnum GetAnimalFromInput()
    {
        AnimalTypeEnum animal;
        string s = Console.ReadLine();
        if (Enum.TryParse(s, true, out animal))
            return animal;
        else
        {
            Console.WriteLine(s + " is not valid, please try again");
            return GetAnimalFromInput();
        }
    }
    

    If you need the flexibility of having them separate, then keep your existing switch.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have following code for updating user's column public void UpdateLastModifiedDate(string username) { using
I have following code: string date = 13.04.2012; string date2 = (DateTime.Parse(date).AddDays(1)).ToString(); This is
Have following code: public interface ITest { string St1 { get; } } public
I have following code snippet in c#. var list = new List<string> { a,
I have following code: public class reader extends Activity { WebView mWebView; String mFilename;
I have following code: Tools::Logger.Log(string(GetLastError()), Error); GetLastError() returns a DWORD a numeric value, but
I have following code in VS2008 If Linq.Enumerable.Contains(Of String)(selectedUsersRoles, RoleCheckBox.Text) Then RoleCheckBox.Checked = True
I have following code in Program.cs in console application class Program : IView {
I have following code to send files to a FTP server. function FtpUploader( [string]$uri,
I have following code in my asp.net MVC3 application: string msg = Beginning report

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.