Skip to content

Instantly share code, notes, and snippets.

View djkeh's full-sized avatar
🏢
Working

Uno Kim djkeh

🏢
Working
View GitHub Profile
@djkeh
djkeh / singleton.cs
Last active August 1, 2017 06:22
static 사용을 제한한 싱글턴 구조의 표현
// static 사용을 제한한 싱글턴 구조의 표현 예제
using System;
public class SingletonService
{
public string GetMessage() => "Hello World";
}
public class ClientModule