// dnlib: See LICENSE.txt for more info using System.Collections.Generic; namespace dnlib.DotNet { /// /// Methods to load properties to make sure they're initialized /// static class MemberMDInitializer { /// /// Read every collection element /// /// Collection element type /// Collection public static void Initialize(IEnumerable coll) { if (coll is null) return; foreach (var c in coll) { } } /// /// Load the object instance /// /// The value (ignored) public static void Initialize(object o) { } } }