using System; using Microsoft.SPOT; // Required for NETMF to recognize extension methods namespace System.Runtime.CompilerServices { /// /// Attribute required for extension methods. /// [AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Class | AttributeTargets.Method)] public sealed class ExtensionAttribute : Attribute { } }