gpt4 book ai didi

c# - GET ALL Skype Friends using skype APIs With C# 获取所有 Skype 好友

转载 作者:太空狗 更新时间:2023-10-30 00:45:38 29 4
gpt4 key购买 nike

有没有办法让所有用户 friend 都使用 C# 使用 Skype?还有我怎样才能活跃起来(在线 friend )。

最佳答案

首先,您必须在项目的 COM 引用选项卡中添加对 SKYPE4COMLib 的引用,然后确保您的应用程序将构建为 x86 最后尝试使用此代码片段:

using System;
using System.Collections.Generic;
using System.Linq;
using SKYPE4COMLib;

namespace Example
{
class SkypeExample
{
static void Main(string[] args)
{
SkypeClass _skype = new SkypeClass();
_skype.Attach(7, false);

IEnumerable<SKYPE4COMLib.User> users = _skype.Friends.OfType<SKYPE4COMLib.User>();

users
.Where(u => u.OnlineStatus == TOnlineStatus.olsOnline)
.OrderBy(u => u.FullName)
.ToList()
.ForEach(u => Console.WriteLine("'{0}' is an online friend.", u.FullName));

Console.ReadKey();
}
}
}

希望这对您有所帮助。

关于c# - GET ALL Skype Friends using skype APIs With C# 获取所有 Skype 好友,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5097913/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com