Skip to content

Instantly share code, notes, and snippets.

@henriquecolini
henriquecolini / Computed.cs
Created March 28, 2025 00:58
Auto computed properties in C#
using System;
public class Computed<T> {
public T Value {
get => m_Value;
set {
OnDetach?.Invoke();
m_Value = value;
OnChange?.Invoke();