Skip to content

Instantly share code, notes, and snippets.

@tomorgan
Created August 6, 2014 04:20
Show Gist options
  • Save tomorgan/a72f3f79470d04bc6458 to your computer and use it in GitHub Desktop.
Save tomorgan/a72f3f79470d04bc6458 to your computer and use it in GitHub Desktop.
Lync Desktop Development - First Steps
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.Lync.Model;
namespace DesktopDevDemo
{
class Program
{
static void Main(string[] args)
{
var theClient = LyncClient.GetClient();
Console.WriteLine(theClient.State);
Console.ReadLine();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment