IDE not recognizing property, unresolved symbol [Answered]
Why is that my IDE flags an error on
ItemType = "drinks"
and ItemType = "desserts"
?9 Replies
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
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•3y ago
Message Not Public
Sign In & Join Server To View
You can declare a non-static variable in a static method in Java...
It's the same in C#....
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
the main method is a static method
And we can declare a non-static method inside main just fine....
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
@Zuleyus The properties doesn't work, so I'm relying on directly referencing the field itself
✅ This post has been marked as answered!