From 29eb28b1f12aff2e82a6f9bcbe74fadc303c8296 Mon Sep 17 00:00:00 2001 From: Chris Cameron Date: Tue, 10 Apr 2018 12:00:42 -0400 Subject: [PATCH] feat: New delegate for appending items to the ReprBuilder --- ICD.Common.Utils/ReprBuilder.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ICD.Common.Utils/ReprBuilder.cs b/ICD.Common.Utils/ReprBuilder.cs index 6204d52..481feae 100644 --- a/ICD.Common.Utils/ReprBuilder.cs +++ b/ICD.Common.Utils/ReprBuilder.cs @@ -3,6 +3,8 @@ using System.Text; namespace ICD.Common.Utils { + public delegate void AddReprPropertyDelegate(string name, object value); + /// /// Simple class for building a string representation of an object. ///