我是Lync的新手。我在VS 2013和VS 2012上使用Lync SDK 2013开发了第一个应用程序。我跟随this tutorial获取了我的winform应用程序,如下所示:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using Microsoft.Lync.Model;
namespace LyncStart
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
var lyncClient = LyncClient.GetClient();
MessageBox.Show(lyncClient.State + "");
}
}
}
但是当我运行应用程序时,会发生错误:
未处理的类型' System.TypeInitializationException'发生在LyncStart.exe中 附加信息:Microsoft.Lync.Model.LyncClient'的类型初始值设定项。抛出异常。
我该如何解决这个问题?
答案 0 :(得分:0)
我怀疑您没有运行Lync Client,请参阅上述文章中的结帐步骤0以获取更多详细信息。