BadScript 2
Loading...
Searching...
No Matches
PopsicleSetter.cs
Go to the documentation of this file.
1// Copyright 2005-2015 Giacomo Stelluti Scala & Contributors. All rights reserved. See License.md in the project root for license information.
2
3using System;
4
6{
7 internal static class PopsicleSetter
8 {
9 public static void Set<T>(bool consumed, ref T field, T value)
10 {
11 if (consumed)
12 {
13 throw new InvalidOperationException();
14 }
15
16 field = value;
17 }
18 }
19}
static void Set< T >(bool consumed, ref T field, T value)