Click here to Skip to main content
15,888,521 members
Home / Discussions / C#
   

C#

 
GeneralRe: Help please, I have a error in this script, when I follow the suggestion their are more errors Pin
OriginalGriff29-Apr-16 21:15
mveOriginalGriff29-Apr-16 21:15 
GeneralRe: Help please, I have a error in this script, when I follow the suggestion their are more errors Pin
wilcoten29-Apr-16 23:17
wilcoten29-Apr-16 23:17 
GeneralRe: Help please, I have a error in this script, when I follow the suggestion their are more errors Pin
OriginalGriff29-Apr-16 23:50
mveOriginalGriff29-Apr-16 23:50 
GeneralRe: Help please, I have a error in this script, when I follow the suggestion their are more errors Pin
wilcoten30-Apr-16 4:05
wilcoten30-Apr-16 4:05 
GeneralRe: Help please, I have a error in this script, when I follow the suggestion their are more errors Pin
OriginalGriff30-Apr-16 4:30
mveOriginalGriff30-Apr-16 4:30 
GeneralRe: Help please, I have a error in this script, when I follow the suggestion their are more errors Pin
wilcoten30-Apr-16 4:46
wilcoten30-Apr-16 4:46 
GeneralRe: Help please, I have a error in this script, when I follow the suggestion their are more errors Pin
OriginalGriff30-Apr-16 5:06
mveOriginalGriff30-Apr-16 5:06 
GeneralRe: Help please, I have a error in this script, when I follow the suggestion their are more errors Pin
wilcoten30-Apr-16 5:37
wilcoten30-Apr-16 5:37 
I know wat you are saying, it is for me also hard to change the code of someone else, because I can't read his mind, when he set up this part of the software.

I think I have the information for you that is missing. And you are right, this is not stuf for a beginner, but I had to start from here, to get it working I hope you appriciate my effort for this.
This is the missing code, together with the part in the last post it is all clear for you I hope.

// nummerpaar
public class number
{
private int _n; // niet-vereenvoudigd nummer
private int _nSimple;

public number(int n)
{
_n = n;
_nSimple = numService.simplify(n);
}

public int simplifiedNumber
{
get
{
return _nSimple;
}
}

public int n
{
get
{
return _n;
}
}

public override string ToString()
{
return _n == _nSimple ? _n.ToString() : _n.ToString() + '/' + _nSimple.ToString();
}
}

abstract class numService
{
private static List<char> vowels = new List<char> { 'a', 'e', 'i', 'o', 'u' };
GeneralRe: Help please, I have a error in this script, when I follow the suggestion their are more errors Pin
OriginalGriff30-Apr-16 5:59
mveOriginalGriff30-Apr-16 5:59 
AnswerRe: Help please, I have a error in this script, when I follow the suggestion their are more errors Pin
ZurdoDev29-Apr-16 6:32
professionalZurdoDev29-Apr-16 6:32 
GeneralRe: Help please, I have a error in this script, when I follow the suggestion their are more errors Pin
wilcoten29-Apr-16 8:33
wilcoten29-Apr-16 8:33 
GeneralRe: Help please, I have a error in this script, when I follow the suggestion their are more errors Pin
ZurdoDev29-Apr-16 8:52
professionalZurdoDev29-Apr-16 8:52 
GeneralRe: Help please, I have a error in this script, when I follow the suggestion their are more errors Pin
wilcoten29-Apr-16 9:02
wilcoten29-Apr-16 9:02 
GeneralRe: Help please, I have a error in this script, when I follow the suggestion their are more errors Pin
ZurdoDev29-Apr-16 9:08
professionalZurdoDev29-Apr-16 9:08 
GeneralRe: Help please, I have a error in this script, when I follow the suggestion their are more errors Pin
wilcoten29-Apr-16 9:21
wilcoten29-Apr-16 9:21 
GeneralRe: Help please, I have a error in this script, when I follow the suggestion their are more errors Pin
ZurdoDev29-Apr-16 9:32
professionalZurdoDev29-Apr-16 9:32 
GeneralRe: Help please, I have a error in this script, when I follow the suggestion their are more errors Pin
wilcoten29-Apr-16 11:07
wilcoten29-Apr-16 11:07 
GeneralRe: Help please, I have a error in this script, when I follow the suggestion their are more errors Pin
Brisingr Aerowing29-Apr-16 11:22
professionalBrisingr Aerowing29-Apr-16 11:22 
GeneralRe: Help please, I have a error in this script, when I follow the suggestion their are more errors Pin
wilcoten29-Apr-16 12:05
wilcoten29-Apr-16 12:05 
GeneralRe: Help please, I have a error in this script, when I follow the suggestion their are more errors Pin
wilcoten29-Apr-16 20:35
wilcoten29-Apr-16 20:35 
GeneralRe: Help please, I have a error in this script, when I follow the suggestion their are more errors Pin
ZurdoDev29-Apr-16 12:07
professionalZurdoDev29-Apr-16 12:07 
GeneralRe: Help please, I have a error in this script, when I follow the suggestion their are more errors Pin
wilcoten29-Apr-16 12:21
wilcoten29-Apr-16 12:21 
GeneralRe: Help please, I have a error in this script, when I follow the suggestion their are more errors Pin
Brisingr Aerowing30-Apr-16 12:32
professionalBrisingr Aerowing30-Apr-16 12:32 
AnswerRe: Help please, I have a error in this script, when I follow the suggestion their are more errors Pin
OriginalGriff29-Apr-16 5:03
mveOriginalGriff29-Apr-16 5:03 
GeneralRe: Help please, I have a error in this script, when I follow the suggestion their are more errors Pin
Pete O'Hanlon29-Apr-16 7:42
mvePete O'Hanlon29-Apr-16 7:42 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.