xarop_pa_toss
xarop_pa_toss
CC#
Created by xarop_pa_toss on 3/8/2023 in #help
NuGet errors when trying to install MAUI.Controls package on .NET 7
still, I haven't found a way to use a combobox
4 replies
CC#
Created by xarop_pa_toss on 3/8/2023 in #help
NuGet errors when trying to install MAUI.Controls package on .NET 7
I think I figured out that it wasn't meant to be installed like this. Not sure why it shows listen then but there's a bunch of them on the list that are supposed to be installed with a different package
4 replies
CC#
Created by xarop_pa_toss on 3/8/2023 in #help
NuGet errors when trying to install MAUI.Controls package on .NET 7
Translated it means the package has a package of type DotnetPlatform for which the project offers no support
4 replies
CC#
Created by xarop_pa_toss on 12/7/2022 in #help
✅ Need persistent Dictionary that can be used between classes.
much appreciated!!
5 replies
CC#
Created by xarop_pa_toss on 11/24/2022 in #help
✅ How should I structure 'exit points' in my program?
very interesting and useful stuff! Thanks @AntonC
15 replies
CC#
Created by xarop_pa_toss on 11/24/2022 in #help
✅ How should I structure 'exit points' in my program?
thanks for the answers. I did some digging and found a nice explanation. I didn't realise you could put something in a try-catch block, call methods inside the block and throw exceptions inside those methods.
15 replies
CC#
Created by xarop_pa_toss on 11/24/2022 in #help
✅ How should I structure 'exit points' in my program?
Thanks for the answers. Regarding #2 I think I have it setup as you mention.
public Class()
method1()
if method1 result == null;
return;
method2()
if method2 result == null;
return;
public Class()
method1()
if method1 result == null;
return;
method2()
if method2 result == null;
return;
Think my main issue is with Question #1. Are you familiar with helpful documentation on the matter? Or somewhere I can read about how to implement things as exit codes, etc?
15 replies