Quick actions

cmd+k|ctrl+k

Navigation

Languages

e5

Snippet info

Language

Csharp

Visibility

public

Author

zvat.333333

Created

2021-02-19T06:06:20Z

Updated

2021-02-19T06:06:31Z

using System;
using System.Collections.Generic;
using System.Linq;

class MainClass {
    static void Main() {
        int x = 10;
        int y = 10;
        Console.WriteLine("x = {" + x + "} y = {" + y + "}");
    }
}
INFO