It looks like you're new here. If you want to get involved, click one of these buttons!
I'm learning C# and wanted to create my own password system I was wondering is this good or is there something I could had done better?
First, you might want to make it multi-file or encrypted (don't take this part of advice to heart - I am not THAT great - if you don't know how to do it, don't)
The other thing is instead of using
if(pass == 1234){
doStuff();
}
if(pass != 1234){
Console.write("U r stupid");
}
use:
if(pass == 1234){
doStuff();
}else{
Console.write("U r stupid")
}
The doStuff(); and Console.write("U r stupid"); would be replaced with the code inside of what you currently have
This is what I think and better programmers would probably tell you to do more stuff.
Answers
Ok thank you!