public extension ULongEnumerable of ulong{public IEnumerator<byte> GetEnumerator(){for (int i = sizeof(ulong); i > 0; i--){yield return unchecked((byte)(this >> (i-1)*8));}}}
然后你就可以这样做:
foreach (byte b in 0x_3A_9E_F1_C5_DA_F7_30_16ul){WriteLine($"{e.Current:X}");}
对于静态接口:
public interface IMonoid<T> where T : IMonoid<T>{static T operator +(T t1, T t2);static T Zero { get; }}
在int上添加扩展属性,并将int视为IMonoid<int>:
public extension IntMonoid of int : IMonoid<int>{public static int Zero => 0;}
using System.Dynamic;using System.Runtime.CompilerServices;
namespace ExtensionProperties{/// <summary>/// Dynamically associates properies to a random object instance/// </summary>/// <example>/// var jan = new Person("Jan");////// jan.Age = 24; // regular property of the person object;/// jan.DynamicProperties().NumberOfDrinkingBuddies = 27; // not originally scoped to the person object;////// if (jan.Age < jan.DynamicProperties().NumberOfDrinkingBuddies)/// Console.WriteLine("Jan drinks too much");/// </example>/// <remarks>/// If you get 'Microsoft.CSharp.RuntimeBinder.CSharpArgumentInfo.Create' you should reference Microsoft.CSharp/// </remarks>public static class ObjectExtensions{///<summary>Stores extended data for objects</summary>private static ConditionalWeakTable<object, object> extendedData = new ConditionalWeakTable<object, object>();
/// <summary>/// Gets a dynamic collection of properties associated with an object instance,/// with a lifetime scoped to the lifetime of the object/// </summary>/// <param name="obj">The object the properties are associated with</param>/// <returns>A dynamic collection of properties associated with an object instance.</returns>public static dynamic DynamicProperties(this object obj) => extendedData.GetValue(obj, _ => new ExpandoObject());}}
xml注释中有一个用法示例:
var jan = new Person("Jan");
jan.Age = 24; // regular property of the person object;jan.DynamicProperties().NumberOfDrinkingBuddies = 27; // not originally scoped to the person object;
if (jan.Age < jan.DynamicProperties().NumberOfDrinkingBuddies){Console.WriteLine("Jan drinks too much");}
jan = null; // NumberOfDrinkingBuddies will also be erased during garbage collection