C
C#3y ago
Bobby Bob

IDE not recognizing property, unresolved symbol [Answered]

internal sealed class Menu //Displays the menu of food/drinks and prompting users for it
{
// When choosing option 1 (Adding to the order menu) the program will begin the prompt asking if adding a drink or a dessert
// Either drinksAvailable or dessertsAvailable will get instantiated but never both, one gets instantiated the other gets picked by garbage collection
static Dictionary<string, Dictionary<string, Tuple<int, int, int>>> drinksAvailable;
static Dictionary<string, Dictionary<string, int>> dessertsAvailable;
private string itemType { get; set; }

// Method to be invoked when user chooses option 1)
static Products TakeCustomerOrder()
{
Console.WriteLine("\n Select the type of product to add: \n 1) Drinks \n 2) Desserts");
int userChoice = Convert.ToInt32(Console.ReadLine());

// Instantiate drinks or dessert base on user input
if (userChoice == 1)
{
InstantiateDrinks();
ItemType = "drinks";
}
else if (userChoice == 2)
{
InstantiateDesserts();
ItemType = "desserts";
}
}
}
internal sealed class Menu //Displays the menu of food/drinks and prompting users for it
{
// When choosing option 1 (Adding to the order menu) the program will begin the prompt asking if adding a drink or a dessert
// Either drinksAvailable or dessertsAvailable will get instantiated but never both, one gets instantiated the other gets picked by garbage collection
static Dictionary<string, Dictionary<string, Tuple<int, int, int>>> drinksAvailable;
static Dictionary<string, Dictionary<string, int>> dessertsAvailable;
private string itemType { get; set; }

// Method to be invoked when user chooses option 1)
static Products TakeCustomerOrder()
{
Console.WriteLine("\n Select the type of product to add: \n 1) Drinks \n 2) Desserts");
int userChoice = Convert.ToInt32(Console.ReadLine());

// Instantiate drinks or dessert base on user input
if (userChoice == 1)
{
InstantiateDrinks();
ItemType = "drinks";
}
else if (userChoice == 2)
{
InstantiateDesserts();
ItemType = "desserts";
}
}
}
Why is that my IDE flags an error on ItemType = "drinks" and ItemType = "desserts"?
9 Replies
Unknown User
Unknown User3y ago
Message Not Public
Sign In & Join Server To View
Bobby Bob
Bobby BobOP3y ago
Is that not allowed? and itemType is the field name, but I suffixed it with { get; set; } so it should have a property with a setter method The field is itemType, but if you suffix a { get; set } you invoke these method through a property called ItemType and the property name will always be PascalCase for the corresponding field I've tested it before, seen it books and pluralsight courses on properties. Apparently it's not just another alias for "fields" there's a important distinction And unlike a field, I can write guardian code within the set keyword in order to protect the integrity of my code from being set to whatever other developers' want '''?""?""'/
Unknown User
Unknown User3y ago
Message Not Public
Sign In & Join Server To View
Bobby Bob
Bobby BobOP3y ago
You can declare a non-static variable in a static method in Java... It's the same in C#....
Unknown User
Unknown User3y ago
Message Not Public
Sign In & Join Server To View
Bobby Bob
Bobby BobOP3y ago
the main method is a static method And we can declare a non-static method inside main just fine....
Unknown User
Unknown User3y ago
Message Not Public
Sign In & Join Server To View
Bobby Bob
Bobby BobOP3y ago
@Zuleyus The properties doesn't work, so I'm relying on directly referencing the field itself
Accord
Accord3y ago
✅ This post has been marked as answered!

Did you find this page helpful?