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

MarshalEx.cs « Ancillary.Interop « tests « System.Runtime.InteropServices « libraries « src - github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4260b311ac02ca0779c0aa1d07a5c1bcfffd7856 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

using System.Diagnostics.CodeAnalysis;
using System.Reflection;

namespace System.Runtime.InteropServices
{
    /// <summary>
    /// Marshalling helper methods that will likely live in S.R.IS.Marshal
    /// when we integrate our APIs with dotnet/runtime.
    /// When referencing this type in a source-generator, make sure to use
    /// the TypeNames.MarshalEx method to enable configuration when dogfooding.
    /// </summary>
    public static class MarshalEx
    {
    }
}