Software Development - Ctrl-Alt-1337/CSGO-Aimbot-and-ESP GitHub Wiki

C# Precisely, 2nd edition, 2011 (notes)

1. Compiling, Loading and Executing C# Program

using System;
public class Sum {
  static void Main(String[] args) {
  int sum = 0;
}
}