I want to convert this C++ code to C#:

typedef struct consoleCommand_s 
{
    char* cmd          ;
    void (*function)() ;
} consoleCommand_t     ;



static consoleCommand_t commands[] = 
{
    {"clientlist", &CG__Clientlist},
    {"say", &CG_Say},
    {"nick", &CG_Nick},
    {"logout", &CG_Logout}
} ;

// e.g.
static void CG_Logout(void)
{
    // Logout
}

The closest i have come is this:

 public class Class1
    {
        // public delegate int Calculate (int value1, int value2);
        public delegate void fnCommand_t();

        public class consoleCommand_t
        {
            public string strCommandName; 
            public fnCommand_t fnCommand;

            public consoleCommand_t(string x, fnCommand_t y)
            {
                this.strCommandName = x;
                this.fnCommand = y;
            } // End Constructor

        } // End Class consoleCommand_t


        public static void Nick()
        {
            Console.WriteLine("Changing Nick");
        } // End Sub


        public static void Logout()
        {
            Console.WriteLine("Logging out");
        } // End Sub

        // string[] names = new string[] {"Matt", "Joanne", "Robert"};
        public consoleCommand_t[] commands = new consoleCommand_t[] {
            new consoleCommand_t("Nick",   Nick),
            new consoleCommand_t("Logout", Logout)
        };





    } // End Class Class1

Now I wanted to ask:

A) Why does Nick & Logout need to be static when all the rest is not ?
B) Is there no C-like way to initialize the commands array, that is, without new ?

link|improve this question

71% accept rate
feedback

3 Answers

up vote 3 down vote accepted

You could do without having a class INSIDE another class and manage your default console commands in another.

public delegate void ConsoleCmd();

public class DefaultCommands
{
    public static void Nick()
    {
        Console.WriteLine("I'm Nick!");
    }

    public static void LogOut()
    {
        Console.WriteLine("You're Fired!");
    }
}

public class Console
{
    private Dictionary<string, ConsoleCmd> mCommands;

    public Console()
    {
        mCommands = new Dictionary<string, ConsoleCmd>();
        mCommands.Add("Nick", DefaultCommands.Nick);
        mCommands.Add("Logout", DefaultCommands.LogOut);
    }
}

Accessing your commands would be as easy as:

ConsoleCmd command = mCommands["Nick"];
command();

EDIT: Failed to mention this. This is to point to the OP that there are other better methods to achieve what he wants to do. And probably doesn't answer his question but I hope will point him to the right direction in terms of his switch from functional programming language to purely object-oriented language.

link|improve this answer
-1. It doesn't answer his question, in fact you repeated his question! – Nawaz Feb 21 '11 at 15:17
@Nawaz: What he really wants to add commands to his Console class and access them if I am right. What he's trying to do is plainly 'translate' it to C#.... functional language to object-oriented language!!! What he does is a solution but not the optimal solution. All I'm doing is pointing him to the right direction. To make it more plain to you, he wants to convert a C++ (looks like C to me, unless he provides a code to show it's C++) to C#. – Vite Falcon Feb 21 '11 at 15:22
You're right, I was converting without thinking. Thanks for the hint. Though, I'm not sure whether a dictionary is faster, but I'll try. – Quandary Feb 21 '11 at 15:28
+1 after than edit. that seems good now.:-) – Nawaz Feb 21 '11 at 15:28
feedback

Nick & Logout may be non-static:

    public void Nick(){}
    public void Logout(){}

   public consoleCommand_t[] commands = new consoleCommand_t[] {
        new consoleCommand_t("Nick",   this.Nick), 
        new consoleCommand_t("Logout", this.Logout) 
   };
link|improve this answer
Just beat me to it - the point here is that you need to write the this for member function delegates (or otherObject.Nick). On your other point, no all C# arrays are object types and so need to be 'new'ed. – Rup Feb 21 '11 at 15:11
Nope, I did already try this, it doesn't work with this. – Quandary Feb 21 '11 at 15:12
1  
OK, true, I get "Cannot use 'this' in a member initialiser". If you move the initialisation into a constructor it'll work. And actually it seems to work there even if you drop the 'this' - odd, I didn't know that. – Rup Feb 21 '11 at 15:17
@Rup: The last thing is not odd, it's the default behaviour in a constructor. – Quandary Feb 21 '11 at 15:25
Csharp seems to have the same issues with member-functionpointers as C++: this->(*this->functionpointer) – Quandary Feb 26 '11 at 12:32
feedback

B) Is there no C-like way to initialize the commands array, that is, without new ?

Don't get hung up on the new keyword in C#, it's just how initialisation is written. In C#, the analagous distinction between stack allocation and heap allocation is made using struct vs class. (So you might like to make your ConsoleCommand_t a struct.)

Edit: And with a struct you can also do:

new consoleCommand_t() {strCommandName = "Nick", fnCommand = Nick}

And skip writing the consoleCommand_t constructor. That's about as close as you can get to your C-style struct initialization, I think

link|improve this answer
The idea that structs are allocated on the stack and classes on the heap is, at best, sometimes true. See blogs.msdn.com/b/ericlippert/archive/2010/09/30/…. – Jim Mischel Feb 21 '11 at 15:38
Yes, that's why I said "analagous" rather than "equivalent". The value type vs. reference type is the more important distinction. – Martin Stone Feb 21 '11 at 15:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.