H
headhuner
1. Sry wegn dem neuen Namen, wollte den anderen Registrieren. Kann aber grad nich auf mein E-mail postfach zugreifen :s
2. Ich bin en Schritt weiter glaub ich.
Ich hab ma den gesamten Quellcode aus der Class1.cs Datei genommen und in meinen Quellcode Form1 eingebunden.
Den hab ich direkt unter:
public Form1() eingebunden.
mom hier der Code:
#
public Form1()
{
InitializeComponent();
}
static void Main(string[] args)
{
Keko keko = new Keko("TextFile1.txt");
bool hallo = keko.Match("Hallo");
}
}
public class Keko
{
private HashSet<string> _hs;
public Keko(string fileName)
{
IEnumerable<string> lines = File.ReadLines(fileName);
IEnumerable<string> words = from line in lines
let ws = line.Split(' ')
from w in ws
select w;
_hs = new HashSet<string>(words);
}
public bool Match(string word)
{
return _hs.Contains(word);
}
}
#
ps: Wegn Gastzugang gibts bei mir kein Raute-zeichen zum klicken oO
Gruß
HeaDHunteR
2. Ich bin en Schritt weiter glaub ich.
Ich hab ma den gesamten Quellcode aus der Class1.cs Datei genommen und in meinen Quellcode Form1 eingebunden.
Den hab ich direkt unter:
public Form1() eingebunden.
mom hier der Code:
#
public Form1()
{
InitializeComponent();
}
static void Main(string[] args)
{
Keko keko = new Keko("TextFile1.txt");
bool hallo = keko.Match("Hallo");
}
}
public class Keko
{
private HashSet<string> _hs;
public Keko(string fileName)
{
IEnumerable<string> lines = File.ReadLines(fileName);
IEnumerable<string> words = from line in lines
let ws = line.Split(' ')
from w in ws
select w;
_hs = new HashSet<string>(words);
}
public bool Match(string word)
{
return _hs.Contains(word);
}
}
#
ps: Wegn Gastzugang gibts bei mir kein Raute-zeichen zum klicken oO
Gruß
HeaDHunteR