using System.Runtime.InteropServices; namespace Interop.NmxAdptr; [ClassInterface(ClassInterfaceType.None)] [TypeLibType(TypeLibTypeFlags.FHidden)] public sealed class IInfoNotify_SinkHelper : IInfoNotify { public IInfoNotify_Fire_OnInfoNotifyEventHandler m_Fire_OnInfoNotifyDelegate; public int m_dwCookie; public void Fire_OnInfoNotify(int P_0) { //Error decoding local variables: Signature type sequence must have at least one element. if (m_Fire_OnInfoNotifyDelegate != null) { m_Fire_OnInfoNotifyDelegate(P_0); } } internal IInfoNotify_SinkHelper() { //Error decoding local variables: Signature type sequence must have at least one element. m_dwCookie = 0; m_Fire_OnInfoNotifyDelegate = null; } }