Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Koritzinsky <jekoritz@microsoft.com>2022-07-12 07:49:28 +0300
committerGitHub <noreply@github.com>2022-07-12 07:49:28 +0300
commitb4dd16b4418de9b3af08ae85f0f3653e55dc420a (patch)
treed356763ef426aab7b41c787f91f397a41376aa5e /src/libraries/System.Runtime.InteropServices/tests/Ancillary.Interop
parenta3a106f46e1e2d9088c24d6928d04e514d9c4832 (diff)
Move ArrayMarshaller and PointerArrayMarshaller to the v2 design (#71978)
Diffstat (limited to 'src/libraries/System.Runtime.InteropServices/tests/Ancillary.Interop')
-rw-r--r--src/libraries/System.Runtime.InteropServices/tests/Ancillary.Interop/ContiguousCollectionMarshallerAttribute.cs13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/libraries/System.Runtime.InteropServices/tests/Ancillary.Interop/ContiguousCollectionMarshallerAttribute.cs b/src/libraries/System.Runtime.InteropServices/tests/Ancillary.Interop/ContiguousCollectionMarshallerAttribute.cs
deleted file mode 100644
index 2261b4279d3..00000000000
--- a/src/libraries/System.Runtime.InteropServices/tests/Ancillary.Interop/ContiguousCollectionMarshallerAttribute.cs
+++ /dev/null
@@ -1,13 +0,0 @@
-// Licensed to the .NET Foundation under one or more agreements.
-// The .NET Foundation licenses this file to you under the MIT license.
-
-namespace System.Runtime.InteropServices.Marshalling
-{
- /// <summary>
- /// Specifies that this marshaller entry-point type is a contiguous collection marshaller.
- /// </summary>
- [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct)]
- public sealed class ContiguousCollectionMarshallerAttribute : Attribute
- {
- }
-}