Install Steam
login | language
简体中文 (Simplified Chinese) 繁體中文 (Traditional Chinese) 日本語 (Japanese) 한국어 (Korean) ไทย (Thai) Български (Bulgarian) Čeština (Czech) Dansk (Danish) Deutsch (German) Español - España (Spanish - Spain) Español - Latinoamérica (Spanish - Latin America) Ελληνικά (Greek) Français (French) Italiano (Italian) Bahasa Indonesia (Indonesian) Magyar (Hungarian) Nederlands (Dutch) Norsk (Norwegian) Polski (Polish) Português (Portuguese - Portugal) Português - Brasil (Portuguese - Brazil) Română (Romanian) усский (Russian) Suomi (Finnish) Svenska (Swedish) Türkçe (Turkish) Tiếng Việt (Vietnamese) Українська (Ukrainian) Report a translation problem
...
1. Yes I added you because you're a female gamer, 'tis an awesome thing to see!
2. I'm Brian.
3. Don't be intimidated but I'm not a stereotypical guy. If anything, I'll be the one in the kitchen =D.
lo
ur skin pmo
you float like a gooner
in a sybau world
you're so fr special
icl i wish I was special
But I'm choppedddd
I'm unemployedd
what the skib am i doing heree
i don’t sigma hereee
ur skin pmo
you float like a gooner
in a sybau world
you're so fr special
icl i wish I was special
But I'm choppedddd
I'm unemployedd
what the skib am i doing heree
i don’t sigma hereee
ur skin pmo
you float like a gooner
in a sybau world
you're so fr special
icl i wish I was special
But I'm choppedddd
I'm unemployedd
what the skib am i doing heree
i don’t sigma hereee
ur skin pmo
you float like a gooner
in a sybau world
you're so fr special
icl i wish I was special
But I'm choppedddd
I'm unemployedd
what the skib am i doing heree
i don’t sigma hereee
ur skin pmo
you float like a gooner
in a sybau world
you're so fr special
icl i wish I was special
But I'm choppedddd
I'm unemployedd
what the skib am i doing heree
i don’t sigma hereee
ur skin pmo
you float like a gooner
in a sybau world
you're so fr special
icl i wish I was special
But I'm choppedddd
I'm unemployedd
what the skib am i doing heree
i don’t sigma hereee
ur skin pmo
you float like a gooner
in a sybau world
you're so fr special
icl i wish I was special
But I'm choppedddd
I'm unemployedd
what the skib am i doing heree
i don’t sigma hereee
> be me
> be outside with my father on a hot sunny day
> get really hot from running around and ask for an ice cream
> ice cream is so nice but kinda small, so ask for another
> dad reluctantly agrees eventually
> yummers.jpg
> after, can't find ball
> look literally everywhere
> still cannot find it
> think i see it on other side of street eventually
> cross the street super quick to grab it
> there is a car?
> and it is going to hit me?
> AAAHHH!
using System.Collections.Generic;
using System.IO;
using System.IO.Enumeration;
using System.Linq;
namespace BasicDictionary
{
class Program
{
static void BuildDictionary(string fileName, Dictionary<string, int> dict)
{
string line;
dict.Clear(); // just in case dictionary already got stuff in
StreamReader sr = new StreamReader(fileName);
line = sr.ReadLine();
while (line != null)
{
string[] words = line.Split(" ");
foreach (var word in words)
{
Console.WriteLine(word);
}
line = sr.ReadLine();
}
sr.Close();
Console.ReadLine();
}
static int GetWordCount(string wordsearched, Dictionary<string, int> dict)
{
return 0;
}
static void Main(string[] args)
{