Skip to content
| Marketplace
Sign in
Visual Studio Code>Programming Languages>C# Basic Snippets For Beginners and NotNew to Visual Studio Code? Get it now.
C# Basic Snippets For Beginners and Not

C# Basic Snippets For Beginners and Not

MikeOxlong

|
3 installs
| (2) | Free
Useful C# snippets for fast development.
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

C# Exam Snippets

Useful snippets for C# fast development.

Features

Includes snippets for:

  • SQL connection
  • DataGridView
  • CRUD operations
  • DFS / BFS
  • Sorting
  • Quick templates

Snippet Examples

DFS

Prefix:

dfs

Example:

static void DFS(int v)
{
    visited[v] = true;

    foreach(var to in g[v])
    {
        if(!visited[to])
            DFS(to);
    }
}

Installation

Search for:

C# Exam Snippets

in VS Code Marketplace.


Requirements

  • Visual Studio Code
  • C# Extension
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2026 Microsoft