Browse Source

Rebase and remove polyfill

pull/1393/head
Joe4evr 5 years ago
parent
commit
8ac4cdf36a
1 changed files with 0 additions and 24 deletions
  1. +0
    -24
      src/Discord.Net.Commands/Utilities/ValueTuplePolyfill.cs

+ 0
- 24
src/Discord.Net.Commands/Utilities/ValueTuplePolyfill.cs View File

@@ -1,24 +0,0 @@
#if !NetStandard20

namespace System
{
internal struct ValueTuple<T1, T2>
{
public T1 Item1;
public T2 Item2;
}
}

namespace System.Runtime.CompilerServices
{
using System.Collections.Generic;
internal class TupleElementNamesAttribute : Attribute
{
public IList<string> TransformNames { get; }
public TupleElementNamesAttribute(string[] transformNames)
{
TransformNames = transformNames;
}
}
}
#endif

Loading…
Cancel
Save