Skip to content

Instantly share code, notes, and snippets.

@fotijr
fotijr / Program.cs
Created July 31, 2014 01:51
Test for Efficient String Comparisons
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Diagnostics;
namespace ConsoleApplication1
{
class Program
@fotijr
fotijr / Program.cs
Created July 24, 2014 02:52
Console application to test concatenation performance of a string compared with using StringBuilder. Program prompts for string and amount of times to concatenate.
using System;
using System.Text;
using System.Diagnostics;
namespace StringBuilderTest
{
class Program
{
static void Main(string[] args)
{