Skip to content

Instantly share code, notes, and snippets.

@Logopher
Logopher / Observable.cs
Last active October 1, 2022 19:34
An MVVM observable implementation intended to reduce repetitive code.
using NLog;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.Linq;
using System.Linq.Expressions;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Threading;