DrSchool Learn coding, fast.
EN AR BN CS DE EL Search

CSHARP Reference: Collections

Quick reference for Collections.

Read time: 1 min Words: 14
My Progress

CSHARP Reference — Collections

Quick summary of Collections with syntax and example.

Syntax

class Program { static void Main(){} }

Example

using System;

class Program{
  static void Main(){
    Console.WriteLine("Hello C#");
  }
}