[ home / overboard ] [ soy / qa / raid / r ] [ craft ] [ int / pol ] [ a / an / asp / biz / mtv / r9k / tech / v / sude / x ] [ q / news / chive / rules / pass / bans / status ] [ wiki / booru / irc ]

A banner for soyjak.party

/soy/ - Soyjaks

π“‚Έ
Catalog
Email
Subject
Comment
File
Password (For file deletion.)

File: C#.jpg πŸ“₯︎ (209.01 KB, 1920x1893) ImgOps

File: SOY-C#learningLESSON1.txt πŸ“₯︎ (5.66 KB)

 β„–15597129[Quote]

Itt we continue learning c#. If you need a revision of what we learned yesterday, check out the LESSON1 file

 β„–15597136[Quote]

File: 1771356676756l.mp4 πŸ“₯︎ (447.22 KB, 512x768) ImgOps

>Itt we continue learning c#. If you need a revision of what we learned yesterday, check out the LESSON1 file

 β„–15597137[Quote]

Geg i remember this

 β„–15597142[Quote]

what's that

 β„–15597150[Quote]

Also check out this book shared by a programmerDEITY if you want to leaen at your own pace - Pro C# 10 with NET6 by Andrew Troelsen

 β„–15597154[Quote]

microsoft java award slow as shit award bytecode award dotnet botnet award copilot integration award

 β„–15597167[Quote]

is this like some special code or something

 β„–15597213[Quote]

I hope that when I open this file, I don’t get bamboozled by bait

 β„–15597343[Quote]

>Comparison operators
These operators are used in operations, which result in either true or false. Comparison operations include:
<Equal: ==
<Not equal: !=
<Greater than: >
<Less than: <
<Greater than or equal: >=
<Smaller than or equal: <=
The result value - true or false - is stored in a boolean data type: bool
^Exapmle: int a = 3;
^int b = 7;
^bool c = a == b;
We use the equality comparison () to compare values of ints a and b, and we store the result of that comparison in bool c. Since a = 3 and b = 7, their values are not equal, so bool c will contain the value false==

 β„–15597366[Quote]

>>15597343
Oh shit, sorry
>We use equality comparison ==

 β„–15597380[Quote]

>>15597129 (OP)
Why is it that every time this thread is posted, it gets deleted and replaced by a GOARMY.com thread?

 β„–15597399[Quote]

nuprogrammingDEITY here, why are we learning C# again? Why wouldn't I just learn python. Sorry I missed the last bread.

 β„–15597423[Quote]

Char only occupies 1 byte in memory doe

 β„–15597443[Quote]

File: 1769417684368v.png πŸ“₯︎ (68.61 KB, 695x612) ImgOps

>>>15597129 (Emmanuel) (03/21/26(Sat)19:26:53)
>>>15597136 (Chud) (03/21/26(Sat)19:27:42) [1771356676756l.mp4]
>>>15597137 (Norwegian) (03/21/26(Sat)19:27:43)
>>>15597142 (Vlodson) (03/21/26(Sat)19:28:15)
>>>15597150 (Babyjak) (03/21/26(Sat)19:29:03)
>>>15597154 (03/21/26(Sat)19:29:12)
>>>15597167 (Smugjak) (03/21/26(Sat)19:30:23)
>>>15597213 (Chud) (03/21/26(Sat)19:34:58)
>>>15597343 (Chud) (03/21/26(Sat)19:44:33)
>>>15597366 (Chud) (03/21/26(Sat)19:45:55)
>>>15597380 (Beastjak) (03/21/26(Sat)19:46:37)
>>>15597399 (Chud) (03/21/26(Sat)19:48:00)
>>>15597423 (Cado) (03/21/26(Sat)19:49:06)

 β„–15597450[Quote]

>>15597399
I want to learn C# for Unity. However, I don't plan on sticking with C#, so after that I'll probably learn some other language, hence I learn the syntax first.

 β„–15597463[Quote]

>>15597423
Google says 2 bytes

 β„–15597665[Quote]

>if else
A construction that allows your program to make a logical choice depending on a chosen condition in bool value (true or false)
<Example:
If (chosen condition = true/false)
{
Action sequence 1;
}
Else
{
Action sequence 2;
}
^Example end
Basically, if the chosen condition met the result you set inside if(), then action sequence 1 (whathever you coded there) will be executed. However, when the chosen condition doesn't meet the result you set inside if(), then action sequence 2 (also whatever you coded there) will be executed

 β„–15597717[Quote]

>>15597665
Remember - chosen condition must be a boolean!
Bool a = true;
If (a)
{
This happens
}
Else
{
That halpens
}

 β„–15597754[Quote]

can you explain me what asnyc/await does

 β„–15597795[Quote]

>>15597717
^Another example
int b = 10;
If (b == 10)
{
This
}
Else
{
That
}
^example end
We have an int b that has the numerical value 10. Inside if(), we use a comparison operation , and since these operations have true or false value - they can be used as a condition for if(). In this case, b 10 is true since int b = 10

 β„–15597868[Quote]

File: IMG_0258.png πŸ“₯︎ (43.02 KB, 1220x1256) ImgOps

>>15597129 (OP)
just use python bro

 β„–15598049[Quote]

>>15597754
That's asynchronous programming. Basically, if your workflow has synchronous programming, your programm will freeze before a task is fully completed. With asynchronous, you can allow your program to continue working while a task is being completed. This is barely touching it, asynchronous programme is a separate big unit of study wth its' own nuances, so I'd suggest you research it by yourself



[Return][Catalog][Go to top][Post a Reply]
Delete Post [ ]
[ home / overboard ] [ soy / qa / raid / r ] [ craft ] [ int / pol ] [ a / an / asp / biz / mtv / r9k / tech / v / sude / x ] [ q / news / chive / rules / pass / bans / status ] [ wiki / booru / irc ]