Skip to content

Instantly share code, notes, and snippets.

@mkoby
Created October 19, 2009 13:42
Show Gist options
  • Save mkoby/213363 to your computer and use it in GitHub Desktop.
Save mkoby/213363 to your computer and use it in GitHub Desktop.
using System;
using TwitterNET;
namespace MyApp
{
public class MyApp()
{
Twitter t = new Twitter(); //Creates a regular Twitter object with no user associated
Twitter t = new Twitter("myusername", "mypassword"); //Will authenticate with the provided credentials
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment