Replies: 1 comment 1 reply
-
These discussions are meant to talk about the internals of the .NET runtime, not to aid you with personal projects. You can come to the community discord for that: https://discord.gg/csharp |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a multi-line text box with a time specified at the beginning of each line like this:
and I also have a timer that is running like this:
I want line one to be checked first, and if the time is the same as the running timer, it will be displayed in a label.
Line one:
Timer:
Out put to label:
And then go to the next line and check it and if the time is the same as the running time it will be displayed in a label. And so on until the end. Of course, I must also say that the number of lines may be different, maybe 2 lines or maybe 20 lines.
I tried this code but this code is very ridiculous:
Beta Was this translation helpful? Give feedback.
All reactions