We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8528837 commit 18dd699Copy full SHA for 18dd699
src/Core/Silk.NET.BuildTools/Common/ImplementedFunction.cs
@@ -1,6 +1,7 @@
1
// Licensed to the .NET Foundation under one or more agreements.
2
// The .NET Foundation licenses this file to you under the MIT license.
3
4
+using System;
5
using System.Collections.Generic;
6
using System.IO;
7
using System.Text;
@@ -13,6 +14,12 @@ namespace Silk.NET.BuildTools.Common
13
14
/// </summary>
15
public class ImplementedFunction
16
{
17
+ /// <summary>
18
+ /// Do not use, for serialization only.
19
+ /// </summary>
20
+ [Obsolete("Do not use, for serialization only.", true)]
21
+ public ImplementedFunction() {}
22
+
23
/// <summary>
24
/// Creates a new ImplementedFunction.
25
0 commit comments