Posts by Vitor Emanoel • 19 points
3 posts
-
-1
votes3
answers339
viewsA: The name "Arthur" does not exist in the current context C#
As the above user said, the string in C# has to be inside (") double quotes to represent a conjunct with multiple characters. A tip is to use get and setters in your parameters to create an…
c#answered Vitor Emanoel 19 -
1
votes2
answers167
viewsQ: Error with SQL and Mariadb (Current position is before the first Row)
I have a problem in my database and I have no idea what it is. public String getBlockPermission(String blockstring){ String permission = ""; try{ ResultSet res =…
-
1
votes1
answer574
viewsQ: getch python returning without using
I’m trying to use the getch from python to grab the key the user pressed, but without me pressing anything it is returning "b'\xff'", and if I use ord(getch()), it returns 255. If you can help me…