Posts by Henrique Ferreira • 1 point
2 posts
-
0
votes0
answers12
viewsQ: How to access the properties of a class that is within another class?
I have this custom control: public class CustomButton : Button { public Test Test { get; set; } } And this class: public class Teste { public string MyProperty { get; set; } } I want to change this…
-
0
votes0
answers70
viewsQ: How to optimize access to the Database?
I’m doing a project where I often need to access the database to do things like: Load User Data (Example: Balance, Settings); Upload images; Insert/Update data. It’s a pretty boring process to have…