MAManoja Abewardhanainmanojaabewardhana.hashnode.dev·Dec 15, 2023 · 1 min readC# Explanation Tutorialhttps://manojaabewardhana.hashnode.dev/c-explanation-tutorial-part-i https://manojaabewardhana.hashnode.dev/c-explanation-tutorial-part-ii00
MAManoja Abewardhanainmanojaabewardhana.hashnode.dev·Dec 15, 2023 · 2 min readC# Explanation Tutorial - Part II2. C# Method Parameters 2.1 Parameters Information can be passed to methods as parameters. Parameters act as variables inside the method. They are specified after the method name, inside the parentheses. You can add as many parameters as you want, ju...00
MAManoja Abewardhanainmanojaabewardhana.hashnode.dev·Dec 15, 2023 · 2 min readC# Explanation Tutorial - Part I1. C# Methods A method is a block of code that only runs when it is called. You can pass data into the method. (We call to passed data as Parameters) Methods are used to perform certain actions. Methods are also known as functions. 1.1 Why do w...00
MAManoja Abewardhanainmanojaabewardhana.hashnode.dev·Dec 8, 2023 · 7 min readObject Oriented ProgrammingWhat is OOP? Object-oriented programming (OOP) is a programming paradigm based on the concept of objects, which can contain data and code. [Data in the form of fields (often known as attributes or properties), and code in the form of procedures (ofte...00