Answer Overflow Logo
Change Theme
Search Answer Overflow
GitHub
Add Your Server
Login
Home
Popular
Topics
Gaming
Programming
Aimbot
Posts
Comments
C
C#
•
Created by KidKai25 on 1/20/2023 in
#help
✅ What is the use of these different versions of the same DLL?
(yellow box) Compatibility and checking out if you have the right version of the file (red box) runtime version of .net
5 replies
C
C#
•
Created by kryca on 12/6/2022 in
#help
❔ How do i count how many different vowels are in a string?
You can immediately get the count without storing the score in the string
66 replies
C
C#
•
Created by kryca on 12/6/2022 in
#help
❔ How do i count how many different vowels are in a string?
@softmek It's neither concise nor fast solution and it counts duplicates too
66 replies
C
C#
•
Created by kryca on 12/6/2022 in
#help
❔ How do i count how many different vowels are in a string?
Well you can use linq but I don't know if it's worth for you to learn it rn
66 replies
C
C#
•
Created by idris_2020 on 12/5/2022 in
#help
✅ How can I print a 2D array
You can have other default values too
40 replies
C
C#
•
Created by idris_2020 on 12/5/2022 in
#help
✅ How can I print a 2D array
int[,] array = new int[6, 8];
int[,] array = new int[6, 8];
40 replies
C
C#
•
Created by idris_2020 on 12/5/2022 in
#help
✅ How can I print a 2D array
I didn't, look at the printing
40 replies
C
C#
•
Created by idris_2020 on 12/5/2022 in
#help
✅ How can I print a 2D array
And why did you create array in this way?
40 replies
C
C#
•
Created by idris_2020 on 12/5/2022 in
#help
✅ How can I print a 2D array
for (int i = 0; i < array.GetLength(0); i++) { for (int j = 0; j < array.GetLength(1); j++) { int element = array[i, j]; Console.WriteLine(element); } }
40 replies