Using OutGauge (or OutSim) is just as simple! This example prints the currently viewed car's RPM to the console.
Code
OutGauge outgauge = new OutGauge();
// Attach OutGauge packet event
outgauge.PacketReceived += (sender, e) => {
Console.WriteLine(e.RPM);
};
// Start listening for packets
outgauge.Connect("127.0.0.1", 30000);
You can find many more examples and information about using the library in the documentation wiki.