Dan
Object Method error
CS7036 There is no argument given that corresponds to the required formal parameter 'aSentence' of 'Class1.Class1(string, string, double)'
internal class Class1 { public string word; public string sentence; public double letters; public Class1(string aWord, string aSentence, double aLetters) { word=aWord; sentence=aSentence; letters=aLetters; } public bool IsWord() { if(letters>=1) { return true; } return false; } }
41 replies