Skip to content

{ Tag Archives } c#

Using the Google Reader API – Part 1

Google Reader API series

Part 1 – Programming to the API
Part 2 – Listing API
Part 3 – Editing API
Google have never officially released API documentation for Google Reader, so this information is unofficial and subject to change.
When I first started looking around for API docs to interface with Google Reader, this site seemed to be pretty [...]

Also tagged , , , , , , ,

Be Careful with Random Numbers in .NET

[private void ColorWindowButton_Click(object sender, RoutedEventArgs e)
{
// todo fix this, crashes if window previously closed
_colorView.Show();
}[

I’m working on a little game for some friends that involves rolling five dice on a board and came across an interesting little problem, which I’ll illustrate with a very small dummy program. Here we have a simple die class for creating [...]

Also tagged , ,