Answer Overflow Logo
Change Theme
Search Answer Overflow
GitHub
Add Your Server
Login
Home
Popular
Topics
Gaming
Programming
Angius
Explore posts from servers
C
C#
N
Nuxt
D
Deno
T
Task
Posts
Comments
C
C#
•
Created by morry329# on 11/3/2024 in
#help
Does this make sense? |
If a reload is fine, then creating a link to some
/delete
action and deleting the item there is fine as well
5 replies
C
C#
•
Created by morry329# on 11/3/2024 in
#help
Does this make sense? |
Well, if you want to delete this item without reloading the page, then yes, JS is the only way you can achieve that
5 replies
C
C#
•
Created by morry329# on 11/3/2024 in
#help
Does this make sense? |
LLMs being LLMs and producing nonsensical code, more news at 11
5 replies
C
C#
•
Created by ~Nost~ on 11/3/2024 in
#help
Help new to c# and need explanation with substring
(a+b).ToUpper()
?
36 replies
C
C#
•
Created by ~Nost~ on 11/3/2024 in
#help
Help new to c# and need explanation with substring
On that combined string for example
36 replies
C
C#
•
Created by ~Nost~ on 11/3/2024 in
#help
Help new to c# and need explanation with substring
So use it where needed
36 replies
C
C#
•
Created by ~Nost~ on 11/3/2024 in
#help
Help new to c# and need explanation with substring
You can use toupper on any string
36 replies
C
C#
•
Created by ~Nost~ on 11/3/2024 in
#help
Help new to c# and need explanation with substring
Also, the textbox text is already a string, no need to convert it
36 replies
C
C#
•
Created by ~Nost~ on 11/3/2024 in
#help
Help new to c# and need explanation with substring
Does it work?
36 replies
C
C#
•
Created by ~Nost~ on 11/3/2024 in
#help
Help new to c# and need explanation with substring
To the length of two
36 replies
C
C#
•
Created by ~Nost~ on 11/3/2024 in
#help
Help new to c# and need explanation with substring
So... the last name part would go from the index of the space
36 replies
C
C#
•
Created by ~Nost~ on 11/3/2024 in
#help
Help new to c# and need explanation with substring
As per the docs
36 replies
C
C#
•
Created by ~Nost~ on 11/3/2024 in
#help
Help new to c# and need explanation with substring
Well,
.Substring()
takes start index and length
36 replies
C
C#
•
Created by ~Nost~ on 11/3/2024 in
#help
Help new to c# and need explanation with substring
Sure
36 replies
C
C#
•
Created by ~Nost~ on 11/3/2024 in
#help
Help new to c# and need explanation with substring
Not useful when creating initials
36 replies
C
C#
•
Created by ~Nost~ on 11/3/2024 in
#help
Help new to c# and need explanation with substring
It exists to find a location of a specific character
36 replies
C
C#
•
Created by ~Nost~ on 11/3/2024 in
#help
Help new to c# and need explanation with substring
You have no use for
IndexOf()
here
36 replies
C
C#
•
Created by ~Nost~ on 11/3/2024 in
#help
Help new to c# and need explanation with substring
Try it with substring
36 replies
C
C#
•
Created by ~Nost~ on 11/3/2024 in
#help
Help new to c# and need explanation with substring
Or
[0]
and
[..2]
36 replies
C
C#
•
Created by ~Nost~ on 11/3/2024 in
#help
Help new to c# and need explanation with substring
You want
.Substring(0, 1)
and
.Substring(0, 2)
respectively
36 replies