/ Published in: C#
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
# region Constructors private static volatile LogWorker current; private LogWorker() { } public static LogWorker Current { get { if (current == null) { lock (syncRoot) { if (current == null) { } } } return current; } } # endregion