reaching a new level of no life

Messages
348
Reaction score
500
Points
510
I've been messing around with WPF for the past few hours now and decided to make this cute little app
suppose it makes things easier for some people that can't be arsed opening a browser and clicking a few links.

anyway, here you go

clicking the link downloads it btw
source code
 
Messages
901
Reaction score
2,532
Points
790
Location
Netherlands
Late, but a few tips:

- In MainWindow.xaml.cs you can see that your constructor MainWindow uses CamelCasing, this is common practice in C# standards, whilst your functions use under_score_casing. This comes over as a tad messy, it'd help readability and maintainability if you maintained one standard (I recommend UpperCamelCase for methods).

You'll also thank yourself (with bigger projects) if you use more descriptive method names, e.g. plpd_web would become LaunchPlpdWebsite, this method name describes clearly what it does, and does not leave anything to doubt.

Check out this guide: https://www.c-sharpcorner.com/UploadFile/8a67c0/C-Sharp-coding-standards-and-naming-conventions/

- You extensively use the System.Diagnostics library, it'd be wise to add it to your using statements, again for readability and maintainability. Your lines would become a lot shorter as it'd simply be Process.Start instead of System.Diagnostics.Process.Start.

- How the fuck is this a new level of no life?
 
Top