47 Replies
What problems are you experiencing with your code?
flashing like this constantly

I asked for help in #chat and was told to put my code here 🤷
ah, you're not printing any new lines anywhere
I-
frick
that's all right, happens to the best of us
the flashing probably comes from using
Clear()
, there are libraries to make it smoother but I don't have experience using them😔
ig we can't get rid of that
unless I only call an update when something changed
but that's effort so
You might be able to at least reduce the flashing (without a library)
if you remove the
Clear
it'll still redraw but yeah you might want to update only the positions that have changedgimme 2 minutes I'm experiencing technical difficulties
man I just realised idk crap about c#
maybe I should learn how to make functions first 😭
$helloworld is a good starting point
but your instincts are in the right place already
Something like this might work, haven't tested it
I'm not sure you can do much better without a library or writing interop code
But if you are a beginner, you should really get the fundamentals down first
Edit: if you come back to this and try to figure out why I wrote the code I wrote, here is the reason. The flashing that you are experiencing is caused by
Console.Write
, which is rather slow. So the idea is to write as few times as possible. You can allocate a 2D map of characters as a contiguous array (char[]
instead of char[][]
or char[,]
) of characters. Then fill it with whatever content you want to write out. Only then call the method Write
. The reason why I'm doing Console.Out.Write
instead of Console.Write
is because the latter doesn't support printing out arrays of characters. That would force me to do Console.Write(new string(map))
, allocating a new string, which is not necessary.uh
lemme
learn how to do this
before I copy random code
ye best thing's to learn at your own pace
I wish to learn all of c# in -5 years fr
gr this project boring I abandon just like all the others 💔💔
You can do that no problem
that's not how time works
By -5 did you mean negative five, not up to five? :kekw:
yes I meant negative 5
5 years ago
I wish to be finished
I can not concentrate on something for 5 years 😭
which is a real issue for me actually
bc I never complete anything
I have like 5 uncompleted c# projects that stopped working or became boring
Are you just doing random projects that you come up with?
yep
I've learned that way, but that was when I just coded as a hobby and wasn't rushing anywhere
I haven't really learned anything for a few months
I learnt like variables and print statements and for, if and while statements and some other basic things and then nothing else
It's fine to not finish hobby projects, but you have to always do something new in them
Otherwise you don't learn anything
An unfinished project wasn't time wasted as long as you've learned something
How about writing your own methods?
my own whats
Maybe you know them as functions
oh
like
uh
idk an example
idk how to do it in c#
A block of code; takes something in (arguments), does something (in method body) and returns some value (or void=nothing)
but in python like
def blahblah():
codeystuff
blahblah()
Yes
Pretty similar
ye
I gotta
learn that
ok
gimme like 17 minutes
done
that was
simple
ok I'ma translate all my python work into c# for fun
Sounds like a good way of getting to know C# syntax
ah a new issue arises
query
how do I test if smth is in something
like
Depends on what you are trying to query. An array? A list? An enumerable? A dictionary?
a string
there is no is numeric function afaik
so
I make one
using methods 😎
There is a
Contains
methodwhat is a type that isn't void
so I can return true
bool
Python also has bool
afaik
python lets me return whatever I want 😎
all done
very nice
method: simples
I also learnt switch-case which was also simple
I fall asleep now
goodnight peeps
gnite!
Oh I also learnt what int.Parse is
Ok bye now
Works similarly to how
int()
works in Python
int value = int.Parse("100");
You did a fine jobYippee I learnt new stuff
I just learned int.parse in Dart today an it works the SAME in C#😅