C# Object and Collection Initializers In this code snippet, we will learn how to use object and collection initializers in C#. Initializers let you set C# Recursion In this code snippet, we will find out how to use recursion in C#. A recursive function/method is a method C# Enumerations In this code snippet, we will see how to use enumerations in C#. An enum is a data type. To C# Method Output Parameters In this code snippet, will see how to use method output parameters in C#. The output parameter works by passing C# Anonymous Methods In this code snippet, we’ll take a look at anonymous methods in C#. Anonymous methods don't have names(obviously). They can C# Abstract Keyword In this code snippet, we’ll find out what the abstract keyword does in C#. Classes and their members such as C# Stacks And Queues In this code snippet, we'll take a look at queues and stacks in C#. Stacks and queues are similar to C# List In this code snippet, we'll find out how to use lists in C#. Lists are similar to arrays, but unlike C# Dictionary In this code snippet, we’ll take a look at dictionaries in C#. Dictionaries can hold a collection of objects and C# Iteration In this code snippet, we’ll find out how to iterate with the for, foreach, while and do while loop. What loops < Previous 1 … 22 23 24 25 26 Next >