What is SourceDrop?

SourceDrop is the easiest way to share your snippets. Try it yourself!

using System.IO; using System; using Sy...

download
using System.IO;
using System;
using System.Linq;

class Program
{
    static void Main()
    {
       Console.Write("Write some number: ");
       string line = Console.ReadLine();
       var count = line.Distinct().Count();
       string result =count+" unique symbols in string";
       Console.Write(result);
    }    

}
Uploaded at 04/29/14 16:12 (UTC)