PinnedElnur·Jul 31, 2021How to Practice Object-Oriented ProgrammingWhenever we want to learn something, we need to practice it. For example, if we learn the sorting algorithms, we go and solve some problems…
InStar GazersbyElnur·Sep 19, 2021Add Methods to Built-in Classes in C#Consider, you are writing a program where you work with the arrays, lists. Let’s say you need to check if the list is empty or not. What…
InStar GazersbyElnur·Feb 22, 2021Algorithms: Linear SearchIf you beginner in programming, you would probably want to practice your skills. When you do, you would see some coding challenges which…
InStar GazersbyElnur·Jan 24, 2021Understanding Time.deltaTimeMost of the people (including me) who start with Unity are having a problem with learning Time.deltaTime. To understand how it works…A response icon6A response icon6
InStar GazersbyElnur·Dec 22, 2020Complete Classes and Objects TutorialAll of the programming languages which have Object-Oriented Programming (OOP) feature have classes and objects. We can think of a class as…A response icon1A response icon1
InStar GazersbyElnur·Dec 16, 20207 Useful Unity Attributes That Make the Inspector Easier To UseWhen I am working with Unity, I have learnt some very useful attributes. For the first time, when I learnt them, I got surprised about how…A response icon3A response icon3
InThe StartupbyElnur·Dec 8, 2020How to Override Methods in C#Method Overriding, in Object-Oriented Programming, is a language feature that allows a child class to implement a method that’s is alread
InStar GazersbyElnur·Oct 24, 2020Arrays vs Lists in C#Arrays and Lists are the most used data structures in C# programming language. Both of them store data like integer, stringA response icon3A response icon3