Click here to Skip to main content
15,899,679 members
Home / Discussions / C#
   

C#

 
GeneralRe: Trying to find the problem in this simple C$ program Pin
Brian_TheLion14-Mar-19 0:11
Brian_TheLion14-Mar-19 0:11 
GeneralRe: Trying to find the problem in this simple C$ program Pin
OriginalGriff14-Mar-19 0:26
mveOriginalGriff14-Mar-19 0:26 
GeneralRe: Trying to find the problem in this simple C$ program Pin
Eddy Vluggen14-Mar-19 3:38
professionalEddy Vluggen14-Mar-19 3:38 
GeneralRe: Trying to find the problem in this simple C$ program Pin
Richard MacCutchan13-Mar-19 23:52
mveRichard MacCutchan13-Mar-19 23:52 
GeneralRe: Trying to find the problem in this simple C$ program Pin
Brian_TheLion13-Mar-19 23:59
Brian_TheLion13-Mar-19 23:59 
GeneralRe: Trying to find the problem in this simple C$ program Pin
OriginalGriff14-Mar-19 0:28
mveOriginalGriff14-Mar-19 0:28 
GeneralRe: Trying to find the problem in this simple C$ program Pin
Richard MacCutchan14-Mar-19 1:51
mveRichard MacCutchan14-Mar-19 1:51 
GeneralRe: Trying to find the problem in this simple C$ program Pin
Brian_TheLion14-Mar-19 0:28
Brian_TheLion14-Mar-19 0:28 
Hi Griff.

I think I have worked it out now.
This is what I changed.

public class Program
{
public static void Main(string[] args)
{
Program prog = new Program();


prog.ReadHeader();
prog.ReadVerbs();
prog.ReadNouns();
prog.ReadObjects();
prog.ReadStartRoom();
prog.ReadRooms();
prog.ReadMessages();
prog.ReadAutoActions();
prog.ReadActions();
Console.Read();

}
public void ReadHeader()
{
Console.WriteLine("ReadHeader");

}

public void ReadVerbs()
{
Console.WriteLine("ReadVerbs");
}


public void ReadNouns()
{
Console.WriteLine("ReadNouns");

}

public void ReadObjects()
{
Console.WriteLine("ReadObjects");

}

public void ReadStartRoom()
{
Console.WriteLine("ReadStartRoom");

}
public void ReadRooms()
{
Console.WriteLine("ReadRooms");

}

public void ReadMessages()
{
Console.WriteLine("ReadMessages");

}

public void ReadAutoActions()
{
Console.WriteLine("ReadAutoActions");

}

public void ReadActions()
{
Console.WriteLine("ReadActions");

}

}

Well at least the program works for now. Hopefully I'm heading in the right direction.

Thanks for your help.

Brian
GeneralRe: Trying to find the problem in this simple C$ program Pin
OriginalGriff14-Mar-19 0:44
mveOriginalGriff14-Mar-19 0:44 
GeneralRe: Trying to find the problem in this simple C$ program Pin
Brian_TheLion14-Mar-19 1:09
Brian_TheLion14-Mar-19 1:09 
GeneralRe: Trying to find the problem in this simple C$ program Pin
Brian_TheLion14-Mar-19 1:19
Brian_TheLion14-Mar-19 1:19 
GeneralRe: Trying to find the problem in this simple C$ program Pin
Richard MacCutchan14-Mar-19 1:54
mveRichard MacCutchan14-Mar-19 1:54 
GeneralRe: Trying to find the problem in this simple C$ program Pin
Brian_TheLion14-Mar-19 1:57
Brian_TheLion14-Mar-19 1:57 
GeneralRe: Trying to find the problem in this simple C$ program Pin
Richard MacCutchan14-Mar-19 2:16
mveRichard MacCutchan14-Mar-19 2:16 
GeneralRe: Trying to find the problem in this simple C$ program Pin
Brian_TheLion14-Mar-19 2:22
Brian_TheLion14-Mar-19 2:22 
GeneralRe: Trying to find the problem in this simple C$ program Pin
Richard MacCutchan14-Mar-19 2:25
mveRichard MacCutchan14-Mar-19 2:25 
GeneralRe: Trying to find the problem in this simple C$ program Pin
OriginalGriff14-Mar-19 2:01
mveOriginalGriff14-Mar-19 2:01 
GeneralRe: Trying to find the problem in this simple C$ program Pin
Brian_TheLion14-Mar-19 2:13
Brian_TheLion14-Mar-19 2:13 
GeneralRe: Trying to find the problem in this simple C$ program Pin
OriginalGriff14-Mar-19 2:31
mveOriginalGriff14-Mar-19 2:31 
GeneralRe: Trying to find the problem in this simple C$ program Pin
Brian_TheLion14-Mar-19 12:27
Brian_TheLion14-Mar-19 12:27 
GeneralRe: Trying to find the problem in this simple C$ program Pin
OriginalGriff14-Mar-19 21:59
mveOriginalGriff14-Mar-19 21:59 
GeneralRe: Trying to find the problem in this simple C$ program Pin
Brian_TheLion14-Mar-19 23:43
Brian_TheLion14-Mar-19 23:43 
GeneralRe: Trying to find the problem in this simple C$ program Pin
OriginalGriff14-Mar-19 23:47
mveOriginalGriff14-Mar-19 23:47 
GeneralRe: Trying to find the problem in this simple C$ program Pin
Brian_TheLion15-Mar-19 0:53
Brian_TheLion15-Mar-19 0:53 
GeneralRe: Trying to find the problem in this simple C$ program Pin
Brian_TheLion14-Mar-19 1:40
Brian_TheLion14-Mar-19 1:40 

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.