C
C#•3y ago
Bobby Bob

Can't access local variable inside an if...else statement [Answered]

When trying to print productChoice which should be a dictionary object. Rider is flagging it as an error, does anyone know why?
70 Replies
sibber
sibber•3y ago
$scope
MODiX
MODiX•3y ago
you probably want $scopes
sibber
sibber•3y ago
$scopes
MODiX
MODiX•3y ago
scope A {
thing a;
scope B {
thing b;
}
}
scope A {
thing a;
scope B {
thing b;
}
}
thing a is available in scope A and scope B thing b is available only in scope B
Bobby Bob
Bobby BobOP•3y ago
@Cyberrex I thought this only applies to methods Methods and classes How can I make it such that thing b is also available to Scope A?
sibber
sibber•3y ago
you define it in scope a
Bobby Bob
Bobby BobOP•3y ago
Yeah but I have to initialize it in scope B Also if Scope B is just a simple if statement, does that count? In Python, you'd be able to use variables defined in an if block outside of the if statement
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
Bobby Bob
Bobby BobOP•3y ago
Right but I have a problem because I can't declare an uninitialised var 😓 I tried declaring var productChouce without any assignment in Scope A, but that didn't work
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
sibber
sibber•3y ago
btw Console.Read doesnt do what you think it does it returns the unicode value of the char
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
Bobby Bob
Bobby BobOP•3y ago
Just to clarify. Menu.DrinksAvailable and Menu.DessertsAvailable returns 2 different dictionaries format What should I be using instead?
sibber
sibber•3y ago
ReadLine or ReadKey
Bobby Bob
Bobby BobOP•3y ago
What should I do if both of those methods return 2 different format?
sibber
sibber•3y ago
thats horrible
Bobby Bob
Bobby BobOP•3y ago
Menu.DrinksAvailable returns Dictionary<string, Dictionary<string, Tuple<int, int, int>>>
sibber
sibber•3y ago
wtf
Bobby Bob
Bobby BobOP•3y ago
Menu.DessertAvailable returns Dictionary<string, Dictionary<string, int>> it's 2 different dictionaries 😦
sibber
sibber•3y ago
c# isnt dynamic thankfully
Bobby Bob
Bobby BobOP•3y ago
What should I be doing instead? To parse that?
sibber
sibber•3y ago
you should rethink the design first of all you probably dont need a dictionary of dictionaries of tuples
Bobby Bob
Bobby BobOP•3y ago
What if I were to make Menu.DessertAvailable return Dictionary<string, Dictionary<string, Tuple<int, int, int>>> as well? But the last 2 int of the tuples will just be null valuable Not really sure how else I can accomplish that
sibber
sibber•3y ago
btw Tuple<> is old syntax, now you just do (int, int, int)
Bobby Bob
Bobby BobOP•3y ago
oooooo
sibber
sibber•3y ago
and you can name them (int foo, int bar, int bla) but creating a class/record is usually a better idea what are you making
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
Bobby Bob
Bobby BobOP•3y ago
I'm making a data structure that can represent the menu above I'm only covering part of the menu
sibber
sibber•3y ago
ok so lets start with the base
Bobby Bob
Bobby BobOP•3y ago
Like here's my code so far
sibber
sibber•3y ago
do you have a base class?
Bobby Bob
Bobby BobOP•3y ago
No I don't, how does inheritance work in this? I'm making a POS Console Application for this coffee shop
sibber
sibber•3y ago
are you familiar with inheritance in other langs?
Bobby Bob
Bobby BobOP•3y ago
It's not a client, just a practice project Yeah, in python and Java
sibber
sibber•3y ago
its a good practice project
Bobby Bob
Bobby BobOP•3y ago
Thank you 😄
sibber
sibber•3y ago
yeah to inheritance in c# is very similar to inheritance in java sorry i gtg be back in a bit im back so yeah its similar to java
D.Mentia
D.Mentia•3y ago
I suggest starting with the most generic class you can, what do all your products have in common? A name and description, a type (dessert, etc), and three prices. So make a class that has all those things. Then you need an Order probably, because that would contain a Product, Quantity, and probably Server and Table (those should be classes too) Though you'll probably actually not include a Type; a Drink and a Dessert likely becomes its own class, extending Product
sibber
sibber•3y ago
a couple of small differences like in c# you have to explicitly define methods as virtual, and override is a keyword
Unknown User
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
Bobby Bob
Bobby BobOP•3y ago
static Dictionary<string, Dictionary<string, (int, int, int)>> InstantiateDrinks()
{
_drinksAvailable = new Dictionary<string, Dictionary<string, (int, int, int)>>
{
["Traditional Coffee"] = new Dictionary<string, (int, int, int)>
{
["Iced Coffee with Condensed Milk"] = new (29_000, 39_000, 45_000),
["Iced Black Coffee"] = new (29_000, 35_000, 39_000),
["Iced White PHIN Coffee & Condensed Milk"] = new (29_000, 39_000, 45_000)
},
["PhinDi Coffee"] = new Dictionary<string, (int, int, int)>
{
["Iced Coffee with Almond & Fresh Milk"] = (45_000, 49_000, 55_000),
["Iced Coffee with Milk Foam"] = new (45_000, 49_000, 55_000),
["Iced Coffee with Chocolate"] = new (45_000, 49_000, 55_000)
},
["Tea"] = new Dictionary<string, (int, int, int)>
{
["Tea with Lotus Seeds"] = new (45_000, 55_000, 65_000),
["Tea with Peach Jelly"] = new (45_000, 55_000, 65_000),
["Peach Tea with Lemongrass"] = new (45_000, 55_000, 65_000),
["Tea with Lychee Jelly"] = new (45_000, 55_000, 65_000),
["Green Tea with Red Bean"] = new (45_000, 55_000, 65_000)
}
};

return _drinksAvailable;
}
static Dictionary<string, Dictionary<string, (int, int, int)>> InstantiateDrinks()
{
_drinksAvailable = new Dictionary<string, Dictionary<string, (int, int, int)>>
{
["Traditional Coffee"] = new Dictionary<string, (int, int, int)>
{
["Iced Coffee with Condensed Milk"] = new (29_000, 39_000, 45_000),
["Iced Black Coffee"] = new (29_000, 35_000, 39_000),
["Iced White PHIN Coffee & Condensed Milk"] = new (29_000, 39_000, 45_000)
},
["PhinDi Coffee"] = new Dictionary<string, (int, int, int)>
{
["Iced Coffee with Almond & Fresh Milk"] = (45_000, 49_000, 55_000),
["Iced Coffee with Milk Foam"] = new (45_000, 49_000, 55_000),
["Iced Coffee with Chocolate"] = new (45_000, 49_000, 55_000)
},
["Tea"] = new Dictionary<string, (int, int, int)>
{
["Tea with Lotus Seeds"] = new (45_000, 55_000, 65_000),
["Tea with Peach Jelly"] = new (45_000, 55_000, 65_000),
["Peach Tea with Lemongrass"] = new (45_000, 55_000, 65_000),
["Tea with Lychee Jelly"] = new (45_000, 55_000, 65_000),
["Green Tea with Red Bean"] = new (45_000, 55_000, 65_000)
}
};

return _drinksAvailable;
}
Can I ommit the "new" keyword safely
sibber
sibber•3y ago
see this is why you need classes
Bobby Bob
Bobby BobOP•3y ago
>_<
sibber
sibber•3y ago
so lets scrap all that and make an abstract base class for menu items
Bobby Bob
Bobby BobOP•3y ago
But I don't understand how inheritance can play a role here, since isn't using a class a big overkill in this case?
sibber
sibber•3y ago
no youll see why this is a perfect use case for classes and inheritance not using classes makes this code messy and hard to maintain
Bobby Bob
Bobby BobOP•3y ago
the base class would only have 3 properties, the name of the product, the size of the product (for drinks) and the price. That's it ooooo
sibber
sibber•3y ago
^
D.Mentia
D.Mentia•3y ago
nearly impossible to work with if you don't use inheritance tbh, because it's not dynamic. Instead of a bunch of different dictionaries, you'll end up with a List of Products, where a Dessert is a Product, and so is a Drink
sibber
sibber•3y ago
and youll have strict typing instead of relying on magic strings and indexing
Bobby Bob
Bobby BobOP•3y ago
O I've seen pluralsight videos on OOP that goes into this into quite a lot of detail In the context of C#
D.Mentia
D.Mentia•3y ago
Though an 'Order' is a misleading name for what I was describing... nor would it have a table... tbh restaurant structures can get complex, lol. But I'd probably make... MenuItem - something on the menu, has at least one price/size pair (that could indeed be a dictionary, but should be an enum of sizes, and a Dictionary<Sizes,double> to get the price (one of the enum values might be Sizes.Default, for items that don't have a size)), name, description Dessert/Drink - These would extend and be a MenuItem (but unless you have some special needs for things depending on their type, such as refills, there's no real reason to have these. But you seem to want to display info per-category, so then these are still useful) ItemOrder - Contains a MenuItem, Quantity, and Size Customer - Contains a collection of ItemOrders and a seat#, and probably a reference to the Table Table - Contains a collection of Customers, probably a table#, and a Server Server - Contains any info you have about your employees, probably just a name for these purposes But anyway, the important part is just making them first - because in the process of making them, you accidentally design your app. Once they're made, the app becomes straightforward and uses natural language
Bobby Bob
Bobby BobOP•3y ago
But there's legit only a few fields which they have in common, a name and a price, and price isn't even all that common either
D.Mentia
D.Mentia•3y ago
Price is often 0 in POS systems for free things. And it's not just a name and price, it's a name and possibly multiple prices, and a description And if you wanted to have an order filled with lots of items, which would also need quantities and other info, you'd have this horrible mess that would be way too hard to work with
sibber
sibber•3y ago
even if its just 2 properties, its something in common that defines them so lets create the MenuItem base class
D.Mentia
D.Mentia•3y ago
Doing it with classes means you can just do something like table.Customers[0].Orders.Add(...) and it just makes life way simpler. But my suggested structure isn't necessarily the right way to do it, it depends on your requirements and whatnot. But you absolutely should use classes or records
sibber
sibber•3y ago
what properties does every menu item have?
Bobby Bob
Bobby BobOP•3y ago
They have categories of food and drinks being offered
sibber
sibber•3y ago
thats the menu itself look at this image every item has a: category (hot drink, cold drink, desert...) name description sizes price for each size
Bobby Bob
Bobby BobOP•3y ago
There's no description It's just the English translation of the Vietnamese name above
sibber
sibber•3y ago
oh well you can omit that so a MenuItem contains these properties: category name sizes price for each size
Bobby Bob
Bobby BobOP•3y ago
And I feel prices wouldn't be enough because there's 3 categories of prices Yeah prices for each size But what about the food? The pastries don't have any size
sibber
sibber•3y ago
we can have a default size Size.Regular for things that dont have sizes
Bobby Bob
Bobby BobOP•3y ago
Where size is an enum? @CyberrexI've been told that using records would be a better alternative to using dictionaries in C# 10 https://app.pluralsight.com/paths/skills/c-10 I'm still figuring my way around, could you point me to the course that talks about records in C# 10? @D.Mentia @Cyberrex
sibber
sibber•3y ago
records are (by default) readonly classes that have value semantics classes are part of the fundamentals so you need to learn how they work first, in order to really understand records idk any courses sorry
Bobby Bob
Bobby BobOP•3y ago
Not really about courses, but rather which of those courses inside that path talks about records
Accord
Accord•3y ago
✅ This post has been marked as answered!
Accord
Accord•3y ago
✅ This post has been marked as answered!

Did you find this page helpful?