What Exactly Is Binary Search?
6:22
How To Reverse A String In C#
1:57
How To Install Docker On Ubuntu
6:27
How To Filter A List In C#
4:13
Жыл бұрын
How To Shuffle A List In C#
3:57
2 жыл бұрын
Пікірлер
@ragibshahrier
@ragibshahrier 6 күн бұрын
Thanks
@esnevip
@esnevip 12 күн бұрын
Pretty sweet thanks, I now have a working platform! One tip for the next video, maybe mute the scene / unity sounds for the video, the Zombie was a bit loud.
@fall3nworldstudios
@fall3nworldstudios 12 күн бұрын
@@esnevip thank you ♥️
@anshvajpai4850
@anshvajpai4850 15 күн бұрын
Great to the point explaination
@humanity_oh
@humanity_oh 22 күн бұрын
Thanks❤
@Lima_does_stuff
@Lima_does_stuff 22 күн бұрын
thank you!!
@petrhavlat5159
@petrhavlat5159 24 күн бұрын
class IntWrapper : IEquatable<IntWrapper> { public int Value { get; set; } public bool Equals(IntWrapper other) => other != null && Value == other.Value; public override bool Equals(object obj) => obj is IntWrapper wrapper && Equals(wrapper); public override int GetHashCode() => HashCode.Combine(Value); } I would do it this way. I do not know, if it is more effective than your way, but I think that my version is more readeable and clean. Just my opinion.
@meliseyka
@meliseyka 25 күн бұрын
Thanks for video
@cuongday9005
@cuongday9005 Ай бұрын
Can you make more video like this ?
@fall3nworldstudios
@fall3nworldstudios Ай бұрын
@@cuongday9005 Yes
@martinwent9510
@martinwent9510 Ай бұрын
the video was helpful unc but you gotta stop slamming them keys
@0997udan
@0997udan 2 ай бұрын
For some reason it says path invalid
@fall3nworldstudios
@fall3nworldstudios 2 ай бұрын
The Reading or the Writing? Check to make sure the path string is written appropriately that it has double slashes like "Textfiles//animals.txt"
@redfield9647
@redfield9647 3 ай бұрын
!WARNING! bad English. Random is pseudo random. In every cycle "new Random().Next" is the same number. The range of "Next" decreases with each cycle, because in arguments "lastIndex", which - -. The random index will almost never become larger than it was on the first iteration. If the List is large, by the end of the iterations it will be very noticeable that there will be almost no shuffle. You need to "new Random" outside the cycle. And do "Next" inside.
@fall3nworldstudios
@fall3nworldstudios 3 ай бұрын
!WARNING! Grammar error. It's intentional for lastIndex to decrease with each iteration so as to not loop infinitely, also because the List has finite items we don't want to keep rearranging items indefinitely and potentially resorting the list to its original order. Whether we use New Random() inside the function or create a variable outside to store the instance doesn't really matter - the results will be the same - in terms of functionality - for Next(0, lastIndex) . It is true that the Random class is an illusion of randomness but that is not because of how I have used it here. If you still uncertain of this implementation please try: int number = Random.Shared.Next(); this is recommended as of .Net6 upwards as a thread safety way of generating a random number so you don't have to manage an instance of Random yourself.
@42yilmazyusuf
@42yilmazyusuf 4 ай бұрын
I recently watched your video on StreamReader and StreamWriter in C#. I enjoyed your demonstration and was inspired to check out your other videos, which did not disappoint. I wish you good luck with your game development endeavors as a fellow game developer 😄
@Mike-og4wc
@Mike-og4wc 4 ай бұрын
Thank you. It has cleared the things up to me
@nwerxuser6599
@nwerxuser6599 5 ай бұрын
5:20 monsters begin to sing outside xd
@fall3nworldstudios
@fall3nworldstudios 5 ай бұрын
Frogs😂
@Minenhlevilakazi006
@Minenhlevilakazi006 5 ай бұрын
i game yakho le?
@fall3nworldstudios
@fall3nworldstudios 5 ай бұрын
Yes
@Minenhlevilakazi006
@Minenhlevilakazi006 5 ай бұрын
@@fall3nworldstudios looks very good and fun
@rhysperry6127
@rhysperry6127 5 ай бұрын
thanks my guy, this helped me out
@magnitoxmen2666
@magnitoxmen2666 5 ай бұрын
Thank you so much. Good bless you.
@gespyrip
@gespyrip 5 ай бұрын
You explain this better then my schoolbook! Thanks alot you are great!
@Minenhlevilakazi006
@Minenhlevilakazi006 5 ай бұрын
really like the approach bafo...you explained it well
@fall3nworldstudios
@fall3nworldstudios 5 ай бұрын
Thank u bafo
@Idkchangethislater
@Idkchangethislater 7 ай бұрын
What if your build fails?
@fall3nworldstudios
@fall3nworldstudios 7 ай бұрын
Did your build fail? If yes then what was the full message of the failure in the terminal?
@Minenhlevilakazi006
@Minenhlevilakazi006 7 ай бұрын
nazoke bafo
@rolandwatz7797
@rolandwatz7797 8 ай бұрын
Thanks a lot for this video I just went into this task and for the first time of my c# - life, I found a very helpful video on the first shot ;-)
@crabcrab1
@crabcrab1 8 ай бұрын
i like that youre explaining every line, but i think it would be better to use actual class names to create variables instead of "var" in tutorials like this. thanks for your video :)
@Bakedayem
@Bakedayem 9 ай бұрын
yo homie, are you South African?
@fall3nworldstudios
@fall3nworldstudios 7 ай бұрын
Yes
@alphons1
@alphons1 9 ай бұрын
var slicedList = nums[3..4];
@Minenhlevilakazi006
@Minenhlevilakazi006 10 ай бұрын
Long time bafo...
@fall3nworldstudios
@fall3nworldstudios 10 ай бұрын
Bafo! time hasn't been generous to me
@madhav_drone
@madhav_drone 11 ай бұрын
It was really nice i was working the same thing but I faced difficult in running in Visual Studio and got message of Only one compilation unit can have top level statements
@madhav_drone
@madhav_drone 11 ай бұрын
i cleared it and it perfectly works and really I understand socket in c#
@boydthompson7723
@boydthompson7723 Жыл бұрын
Thank you! That was exactly what I needed to learn.
@chikalawrence8502
@chikalawrence8502 Жыл бұрын
Very good video. Please can you do a short video on how you created the files, please.
@fall3nworldstudios
@fall3nworldstudios 7 ай бұрын
Probably useless to answer you now since your comment was 6 months ago😂... But okiedo If you writing to a file that doesn't exist then the textfiles get created automatically in the project path with the StreamWriter as explained in this video. If you are talking about the project files then I shall do so👍🏼 Are you refering to the project files?
@dipintigupta9777
@dipintigupta9777 Жыл бұрын
Sir nice video. But i wanna ssl/tls connection with communicate. Plz help me
@mracipayam
@mracipayam Жыл бұрын
The voice behind the video is remind me my village, peaceful feel.
@duransoft6346
@duransoft6346 Жыл бұрын
Keyboard typing sound is so anoyn
@fall3nworldstudios
@fall3nworldstudios Жыл бұрын
Bite me
@emekaetube538
@emekaetube538 Жыл бұрын
😂
@JuankQuinteroMejia
@JuankQuinteroMejia 2 ай бұрын
I think it adds an ASMR vibe
@JDSchuitemaker
@JDSchuitemaker Жыл бұрын
Thanks for the video. Good explanation and useful for my project.
@deeee_veeen
@deeee_veeen Жыл бұрын
Beautiful video Can you make a video on 3-tier programming
@sandanondlozi
@sandanondlozi Жыл бұрын
you sound south african sir. thank you by the way!
@fall3nworldstudios
@fall3nworldstudios Жыл бұрын
I am South African🖖
@Console.WriteLine
@Console.WriteLine Жыл бұрын
perfect explanation, thank you
@aleksandargracanin2887
@aleksandargracanin2887 Жыл бұрын
thank you
@prestigiousaristocracy4232
@prestigiousaristocracy4232 Жыл бұрын
Thank you! 🎉
@musclegenic4335
@musclegenic4335 Жыл бұрын
hey bro! I want to really thanku im working on my dictionary app project in js.......and my api was not working after so much searchig on internet there is nothing was working and was really depressed that how to pass argument with api call so when you perform concatination so i go to chrome how to perform concatination in js and my api works thanks alot again........!
@pixelryan606
@pixelryan606 Жыл бұрын
Thanks for such an amazing tutorial! Was really helpful.
@y2taner429
@y2taner429 Жыл бұрын
Thank you!
@guillermodanielmazzarigiov1768
@guillermodanielmazzarigiov1768 2 жыл бұрын
Thank you so much for this!!!
@b.c6223
@b.c6223 2 жыл бұрын
Style doesn’t match