AArjunaninsarjunan.hashnode.dev·May 19, 2025 · 2 min readDay 1 Essentials: Understanding AWS Accounts Basics# AWS Account and IAM Notes ## AWS Accounts - An **AWS account** is a container for identities and resources. - The **email ID** provided during account creation is used to create a special identity called the **Root User**. - The **Root User** has *...00
AArjunaninsarjunan.hashnode.dev·Aug 6, 2024 · 2 min readDay 3: Generics in C#Hello Friends, In today's article, I will explain about generics in C# with simple examples. Generics in C# provides a way to define class and methods with placeholders that can operate with any datatype. It provides following benefits. Code reusabi...00
AArjunaninsarjunan.hashnode.dev·Aug 5, 2024 · 2 min readDay 2: Extension method in c#Hello Friends, In today's article, I will explain about extension methods in C# with simple examples. Extension methods in C# allow you to add new behaviors (methods) to existing types without modifying their original source code. This is particula...00
AArjunaninsarjunan.hashnode.dev·Aug 5, 2024 · 3 min readDay 1: Action, Func and Predicate Delegate in C#Hello Friends, In today's article, I will explain about Action, Func and Predicate delegates in C# with simple examples. Action delegate An Action delegate in C# is used to represent a method that performs an action but does not return a value. It ca...00