Skip to content

Instantly share code, notes, and snippets.

@alexperovich
Created December 7, 2016 21:36
Show Gist options
  • Save alexperovich/c18cda6e63c105702a0d8ef07e8ee729 to your computer and use it in GitHub Desktop.
Save alexperovich/c18cda6e63c105702a0d8ef07e8ee729 to your computer and use it in GitHub Desktop.
using System;
namespace ConsoleApp1
{
interface IBar
{
void Foo();
}
class Program : IBar
{
string _foo = "wignew";
static void Main(string[] args)
{
}
void IBar.Foo()
{
lock (_foo)
{
Console.WriteLine();
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment