Posts by pekira • 57 points
5 posts
-
2
votes1
answer139
viewsQ: C# File encryption
I want to send files to friends but I want to make sure no one can see their content. I would like an example to perform C file encryption#.
-
0
votes1
answer122
viewsA: How to embed a DLL into a winForms project
To incoperate a dll you have and go to the window Ferences and right-click then click add
-
0
votes1
answer174
viewsQ: Calculator does not detect two-digit numbers
I’m making a calculator in c#, but calculator, I don’t know why, it doesn’t detect numbers with 2 digits, like 11+1 = 3, the calculator is detecting as if it were 1 + 1 + 1. Follow the code: using…
-
3
votes2
answers163
viewsQ: Convert Switch to IF
Hello everyone is the following I have this code and I needed to change it to if instead of switch, how can I do this? switch (theOperator) { case "+": total2 = total1 +…
-
0
votes2
answers82
viewsQ: C# conversion of a private void to public void
Hello everyone I need to know how I can convert this code to public void. Visual Studio shows error in variable and. Error message: "The name 'e' does not exist in the Current context" I just did it…