Skip to content

Instantly share code, notes, and snippets.

@duckymirror
duckymirror / IntegerConversionTest.cs
Last active February 3, 2019 00:16
This measures the time for conversions of integers to strings and logging them in the console.
using System;
using System.Diagnostics;
namespace WriteLineSpeed
{
class Program
{
static void Main(string[] args)
{
Stopwatch stopwatch = new Stopwatch();