Skip to content

Instantly share code, notes, and snippets.

@cathode
Created April 13, 2013 12:26
Show Gist options
  • Save cathode/5378197 to your computer and use it in GitHub Desktop.
Save cathode/5378197 to your computer and use it in GitHub Desktop.
Does this even work?
public Frame GetFrame(long index)
{
IAsyncResult result = this.BeginGetFrame(null, index);
var frame = this.EndGetFrame(result);
return frame;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment