Skip to content

Instantly share code, notes, and snippets.

View softwareantics's full-sized avatar

Mathew O'Dwyer softwareantics

View GitHub Profile
@softwareantics
softwareantics / Program.cs
Last active March 29, 2020 06:12
Real-Time Graphics Rendering with GDI+ in C#
namespace RealTimeGDIExample
{
using System;
using System.ComponentModel;
using System.Drawing;
using System.Windows.Forms;
public class Display : Form
{
public Display(int width, int height, string title)
@softwareantics
softwareantics / CodeReview.md
Last active April 13, 2024 11:56
Code Review Checklist

General

Warnings and Errors

  • There are no warnings present in the project.
  • There are no errors present in the project.
  • There are no warnings that have been supressed.
  • The entire solution can build and run locally on your machine.
  • The code works.