您的位置:首页 > 其它

关于AD的操作 -- 接口补充

2012-05-02 23:06 435 查看
using System;

using System.Runtime.CompilerServices;

using System.Runtime.InteropServices;

namespace TB.IADS

{

    [ComImport, TypeLibType((short)0x1040), Guid("9068270B-0939-11D1-8BE1-00C04FD8D503")]

    public interface IADsLargeInteger

    {

        [DispId(2)]

        int HighPart { [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime), DispId(2)] get; [param: In] [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime), DispId(2)] set; }

        [DispId(3)]

        int LowPart { [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime), DispId(3)] get; [param: In] [MethodImpl(MethodImplOptions.InternalCall, MethodCodeType = MethodCodeType.Runtime), DispId(3)] set; }

    }

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  interface c