From e9fb8cfde9cbd9f9f9f52957828b7993b9d9355a Mon Sep 17 00:00:00 2001 From: Sean Hall Date: Thu, 2 Apr 2020 16:33:36 +1000 Subject: Create AddTuple extension method for IntermediateSection. --- src/WixToolset.Data/IntermediateSectionExtensions.cs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/WixToolset.Data/IntermediateSectionExtensions.cs (limited to 'src') diff --git a/src/WixToolset.Data/IntermediateSectionExtensions.cs b/src/WixToolset.Data/IntermediateSectionExtensions.cs new file mode 100644 index 00000000..73afca7b --- /dev/null +++ b/src/WixToolset.Data/IntermediateSectionExtensions.cs @@ -0,0 +1,14 @@ +// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. + +namespace WixToolset.Data +{ + public static class IntermediateSectionExtensions + { + public static T AddTuple(this IntermediateSection section, T tuple) + where T : IntermediateTuple + { + section.Tuples.Add(tuple); + return tuple; + } + } +} -- cgit v1.2.3-55-g6feb