C# Access Modifiers

Introduction Modifiers are C# keywords used to modify declarations of types (class, struct, interface, enum) and type members (fields, properties, methods, indexers, …). The remaining sections explain these modifiers. Access Modifiers Access modifiers are keywords used to specify the declared accessibility of types and type Read More …

Part – 2: Syntax

Code structure The first thing we’ll study is the building blocks of code. Statements Statements are syntax constructs and commands that perform actions. We’ve already seen a statement, alert(‘Hello, world!’), which shows the message “Hello, world!”. We can have as many Read More …