Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I get the error "Invalid token '{' in class, struct, or interface member declaration" in my following C # code.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication3
{
    class Program
    {
        static int a, b;
        void add(int x, int y);
        {
            int c= x+y;
            Console.WriteLine("addition is " + char);
        }

        static void Main(string[] args)
        {   

        }
   }
}

Your help in solving will be greatly appreciated.

Thank you.

Anees

share|improve this question

closed as too localized by 0A0D, leppie, Tim Post Jun 17 '12 at 15:59

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

3 Answers

There is error because you have semicolon in there and there is wrong variable name, fix:

void add(int x, int y)
{
    int c= x+y;
    Console.WriteLine("addition is " + c);
}
share|improve this answer
Great help......Thank you so much.... it is working fine now. – Anees Kalsekar Jun 16 '12 at 11:20

Remove semicolon after your method declaration void add(int x, int y);. Change it to

void add(int x, int y)

and What is char inside Console.WriteLine("addition is " + char)? Change char to c.

Console.WriteLine("addition is " + c);

No need to write c.ToString() because when an entity is appended with string it automatically calls its ToString() method. (Coz this method is available to all entities of .Net).

share|improve this answer
Thank you so much for you time and help. – Anees Kalsekar Oct 14 '12 at 8:07

Remove semicolon after this method declaration and change char to c in Console.Writeline

void add(int x, int y);
{
        int c= x+y;
        Console.WriteLine("addition is " + char);
    }

Instead write

 void add(int x, int y)
{
        int c= x+y;
        Console.WriteLine("addition is " + c);
    }
share|improve this answer
Thank you very much. – Anees Kalsekar Oct 14 '12 at 8:07

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