GitList
Repositories
Help
Report an Issue
boggleNet
Code
Commits
Branches
Tags
Search
Tree:
1b3f85f
Branches
Tags
master
boggleNet
ListWord.cs
Removing byte order mark using sed -i '1 s/^\xef\xbb\xbf//' *.cs
Dev Ghai
commited
1b3f85f
at 2013-09-23 06:42:21
ListWord.cs
Blame
History
Raw
using System.Collections.Generic; namespace Boggle { public class ListWord { public bool IsWord; public Dictionary<string, ListWord> Next; public ListWord() { this.IsWord = false; this.Next = null; } public ListWord(bool isWord) { this.IsWord = isWord; this.Next = null; } public ListWord(bool isWord, Dictionary<string, ListWord> next) { this.IsWord = isWord; this.Next = next; } } }