12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace HybridCLR.Generators.MethodBridge
- {
- [AttributeUsage(AttributeTargets.Method)]
- public class SignatureProviderAttribute : Attribute
- {
- public List<PlatformABI> Platforms { get; }
- public SignatureProviderAttribute(params PlatformABI[] platforms)
- {
- Platforms = new List<PlatformABI>(platforms);
- }
- }
- }
|