C#_Error "Namespace cannot directly contain..."
-
As I am new at this, and this is my first attempt at actually writing code, some of you may chuckle (or laugh out loud at the simplistic code)... please be merciful. I keep getting the error message: A namespace cannot directly contain members such as fields or methods" I have visited MSDN, and virtually every google and bing hit out there, but no matter how I change the first entry, I get the same message. Could someone help?
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;namespace _11012_debproject_2
{class Program { static void Main(string\[\] args); int number1; int number2; int Multiply; // prompt user // enter first number
}
Console.WriteLine( "Enter first number:" ) number1 (Console.Readline()); // prompt user // enter second number Console.WriteLine( "Enter second number:") number2 ( Console.ReadLine()); product = number1 \* number2; // multiply numbers Console.WriteLine( "product is {0}",product );
}
// display product} } -
As I am new at this, and this is my first attempt at actually writing code, some of you may chuckle (or laugh out loud at the simplistic code)... please be merciful. I keep getting the error message: A namespace cannot directly contain members such as fields or methods" I have visited MSDN, and virtually every google and bing hit out there, but no matter how I change the first entry, I get the same message. Could someone help?
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;namespace _11012_debproject_2
{class Program { static void Main(string\[\] args); int number1; int number2; int Multiply; // prompt user // enter first number
}
Console.WriteLine( "Enter first number:" ) number1 (Console.Readline()); // prompt user // enter second number Console.WriteLine( "Enter second number:") number2 ( Console.ReadLine()); product = number1 \* number2; // multiply numbers Console.WriteLine( "product is {0}",product );
}
// display product} }Check your curly braces... they don't properly enclose the object.
Will Rogers never met me.
-
As I am new at this, and this is my first attempt at actually writing code, some of you may chuckle (or laugh out loud at the simplistic code)... please be merciful. I keep getting the error message: A namespace cannot directly contain members such as fields or methods" I have visited MSDN, and virtually every google and bing hit out there, but no matter how I change the first entry, I get the same message. Could someone help?
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;namespace _11012_debproject_2
{class Program { static void Main(string\[\] args); int number1; int number2; int Multiply; // prompt user // enter first number
}
Console.WriteLine( "Enter first number:" ) number1 (Console.Readline()); // prompt user // enter second number Console.WriteLine( "Enter second number:") number2 ( Console.ReadLine()); product = number1 \* number2; // multiply numbers Console.WriteLine( "product is {0}",product );
}
// display product} }As mentioned, your } brackets are wrong and the problems starts with the ; at the end of your Main method.
namespace _11012_debproject_2
{class Program { static void Main(string\[\] args) // don't want ; here { int number1; int number2; int multiply; //better using camel case not title case // prompt user // enter first number Console.WriteLine( "Enter first number:" ); //you needed ; here number1 (Console.Readline()); // prompt user // enter second number Console.WriteLine( "Enter second number:") //And here as well number2 ( Console.ReadLine()); product = number1 \* number2; // multiply numbers Console.WriteLine( "product is {0}",product ); //More stuff not provided in post } // End of Main method } //End of class
} //End of namesspace
You would do well to read a bit about naming conventions. namespaces should start with a letter. Not a number of underscore. Enjoy
"You get that on the big jobs."
-
As I am new at this, and this is my first attempt at actually writing code, some of you may chuckle (or laugh out loud at the simplistic code)... please be merciful. I keep getting the error message: A namespace cannot directly contain members such as fields or methods" I have visited MSDN, and virtually every google and bing hit out there, but no matter how I change the first entry, I get the same message. Could someone help?
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;namespace _11012_debproject_2
{class Program { static void Main(string\[\] args); int number1; int number2; int Multiply; // prompt user // enter first number
}
Console.WriteLine( "Enter first number:" ) number1 (Console.Readline()); // prompt user // enter second number Console.WriteLine( "Enter second number:") number2 ( Console.ReadLine()); product = number1 \* number2; // multiply numbers Console.WriteLine( "product is {0}",product );
}
// display product} }using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;namespace _11012_debproject_2
{class Program { static void Main(string\[\] args); { int number1; int number2; int Multiply; // prompt user // enter first number Console.WriteLine( "Enter first number:" ); number1=Convert.ToInt32(Console.Readline()); // prompt user // enter second number Console.WriteLine( "Enter second number:"); number2=Convert.ToIn32( Console.ReadLine()); Multiply= number1 \* number2; // multiply numbers Console.WriteLine( "Multiply is {0} ",Multiply); } }
}
-
As I am new at this, and this is my first attempt at actually writing code, some of you may chuckle (or laugh out loud at the simplistic code)... please be merciful. I keep getting the error message: A namespace cannot directly contain members such as fields or methods" I have visited MSDN, and virtually every google and bing hit out there, but no matter how I change the first entry, I get the same message. Could someone help?
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;namespace _11012_debproject_2
{class Program { static void Main(string\[\] args); int number1; int number2; int Multiply; // prompt user // enter first number
}
Console.WriteLine( "Enter first number:" ) number1 (Console.Readline()); // prompt user // enter second number Console.WriteLine( "Enter second number:") number2 ( Console.ReadLine()); product = number1 \* number2; // multiply numbers Console.WriteLine( "product is {0}",product );
}
// display product} }The problem (as mentioned above) is your curly braces - the last two are commented out, as is should by them being coloured green. If you get this kind of problem, Try CTRL+K CTRL+D - it formats your code so that everything is indented nicely. It won't work when you have missing braces, but if you fix that and try it, it should be obvious in future where things are going wrong. BTW: You can change how Visual Studio handles your indentation to your preferred style in "Tools...Options" and then "TextEditor", "C#", "Formatting", "Indentation". So if you prefer 1TBS:
if (condition) {
statement;
statement;
}Or K&R:
if (condition)
{
statement;
statement;
}Or Whitesmiths:
if (condition)
{
statement;
statement;
}You can get it to work with it happily. (I prefer Whitesmiths)
Ideological Purity is no substitute for being able to stick your thumb down a pipe to stop the water
-
Check your curly braces... they don't properly enclose the object.
Will Rogers never met me.
Roger: Thank you. I appreciate your help.
-
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;namespace _11012_debproject_2
{class Program { static void Main(string\[\] args); { int number1; int number2; int Multiply; // prompt user // enter first number Console.WriteLine( "Enter first number:" ); number1=Convert.ToInt32(Console.Readline()); // prompt user // enter second number Console.WriteLine( "Enter second number:"); number2=Convert.ToIn32( Console.ReadLine()); Multiply= number1 \* number2; // multiply numbers Console.WriteLine( "Multiply is {0} ",Multiply); } }
}
Thank you for your help. I appreciate your time.
-
As mentioned, your } brackets are wrong and the problems starts with the ; at the end of your Main method.
namespace _11012_debproject_2
{class Program { static void Main(string\[\] args) // don't want ; here { int number1; int number2; int multiply; //better using camel case not title case // prompt user // enter first number Console.WriteLine( "Enter first number:" ); //you needed ; here number1 (Console.Readline()); // prompt user // enter second number Console.WriteLine( "Enter second number:") //And here as well number2 ( Console.ReadLine()); product = number1 \* number2; // multiply numbers Console.WriteLine( "product is {0}",product ); //More stuff not provided in post } // End of Main method } //End of class
} //End of namesspace
You would do well to read a bit about naming conventions. namespaces should start with a letter. Not a number of underscore. Enjoy
"You get that on the big jobs."
I am having difficulty posting replies. If this is a double, I apologize. Thank you for your assistance. My namespace "name" is a bad habit I must break (from business emails with the date at the beginning of the Subject line). Thank you for the reminder. Also, the braces? I have no excuse for the carelessness.
-
The problem (as mentioned above) is your curly braces - the last two are commented out, as is should by them being coloured green. If you get this kind of problem, Try CTRL+K CTRL+D - it formats your code so that everything is indented nicely. It won't work when you have missing braces, but if you fix that and try it, it should be obvious in future where things are going wrong. BTW: You can change how Visual Studio handles your indentation to your preferred style in "Tools...Options" and then "TextEditor", "C#", "Formatting", "Indentation". So if you prefer 1TBS:
if (condition) {
statement;
statement;
}Or K&R:
if (condition)
{
statement;
statement;
}Or Whitesmiths:
if (condition)
{
statement;
statement;
}You can get it to work with it happily. (I prefer Whitesmiths)
Ideological Purity is no substitute for being able to stick your thumb down a pipe to stop the water
Thank you very much for the guidance. I will make the necessary adjustment in Visual Studio. I appreciate you taking the time to help.
-
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;namespace _11012_debproject_2
{class Program { static void Main(string\[\] args); { int number1; int number2; int Multiply; // prompt user // enter first number Console.WriteLine( "Enter first number:" ); number1=Convert.ToInt32(Console.Readline()); // prompt user // enter second number Console.WriteLine( "Enter second number:"); number2=Convert.ToIn32( Console.ReadLine()); Multiply= number1 \* number2; // multiply numbers Console.WriteLine( "Multiply is {0} ",Multiply); } }
}
I wanted to wander back and thank you formally. I changed "product" to "muliply" and it looks like I neglected the "convert to 32" as well as my other errors. Thank you again.
-
The problem (as mentioned above) is your curly braces - the last two are commented out, as is should by them being coloured green. If you get this kind of problem, Try CTRL+K CTRL+D - it formats your code so that everything is indented nicely. It won't work when you have missing braces, but if you fix that and try it, it should be obvious in future where things are going wrong. BTW: You can change how Visual Studio handles your indentation to your preferred style in "Tools...Options" and then "TextEditor", "C#", "Formatting", "Indentation". So if you prefer 1TBS:
if (condition) {
statement;
statement;
}Or K&R:
if (condition)
{
statement;
statement;
}Or Whitesmiths:
if (condition)
{
statement;
statement;
}You can get it to work with it happily. (I prefer Whitesmiths)
Ideological Purity is no substitute for being able to stick your thumb down a pipe to stop the water
-
I am having difficulty posting replies. If this is a double, I apologize. Thank you for your assistance. My namespace "name" is a bad habit I must break (from business emails with the date at the beginning of the Subject line). Thank you for the reminder. Also, the braces? I have no excuse for the carelessness.
Deborah Palmer McCain wrote:
I am having difficulty posting replies.
Don't worry about that, Deborah. Quite a few of us have been having trouble with that for the past week or so. The site administrators are running some SQL Server scripts that are processor-intensive, and that tends to bog things down a bit. Be patient... It will get better.
Will Rogers never met me.
-
Nah. It's clumsy and inconsistent with single statement indentation: If you write like this:
if (condition)
statement;Why would you change the indentation when it is a block you are using instead of a single statement?
if (condition)
{
statement;
statement;
}It's up to personal preference (or company practice) though - the important thing is to be consistent throughout.
Ideological Purity is no substitute for being able to stick your thumb down a pipe to stop the water
-
Deborah Palmer McCain wrote:
I am having difficulty posting replies.
Don't worry about that, Deborah. Quite a few of us have been having trouble with that for the past week or so. The site administrators are running some SQL Server scripts that are processor-intensive, and that tends to bog things down a bit. Be patient... It will get better.
Will Rogers never met me.
Roger: Thank you for the update, I thought that 7 was wreaking havoc with my one lonely desktop. I used Vista (no gagging) with relish for so many years, that the Apple-esque features of 7 cause me to blame it for everything. I do like Stick Notes though. Just as an update, my application runs smoothly after I fixed further code errors Thank you again for your help. Deborah
-
Nah. It's clumsy and inconsistent with single statement indentation: If you write like this:
if (condition)
statement;Why would you change the indentation when it is a block you are using instead of a single statement?
if (condition)
{
statement;
statement;
}It's up to personal preference (or company practice) though - the important thing is to be consistent throughout.
Ideological Purity is no substitute for being able to stick your thumb down a pipe to stop the water
I prefer K&R to 1TBS (devotees of both cults can be fanatics), because I think it's more readable, and more easily maintainable. WhiteSmith's I've never personally seen used at any place I've worked. I maintain two simple macros in UltraEdit that will convert K&R<=>1TBS, if I should ever need to. But, I think your "shibboleth" example code is a bit mis-leading: nothing stops you from using "pure" K&S and writing:
if(condition}
{
statement;
}Or even:
if (condition) { statement; }
I've asked the braces directly how they feel about having only one statement, and they assure me they do not feel neglected or lonely :) I think lack of braces around one simple and short statement, following an if-clause is seldom written with braces no matter what style of formatting you use. Where omitting the braces would really "bother" me would be when the the single statement following the if-clause was so bloody long that it overflowed the text-working-area boundaries to be several lines long ! But, of course, you are, as usual, bulls-eye-center, when you emphasize you may not have personal choice if you go to work on some project where there are code formatting guidelines in place for all team members. Thank goodness C# does not allow multiple statements separated by colons, or "line-continuation" characters, as in the late Pleistocene when VB roamed the savannas, and real men did not eat quiche and programmed only in C and assembly language. best, Bill
"It is the mark of an educated mind to be able to entertain a thought without accepting it." Aristotle
-
I prefer K&R to 1TBS (devotees of both cults can be fanatics), because I think it's more readable, and more easily maintainable. WhiteSmith's I've never personally seen used at any place I've worked. I maintain two simple macros in UltraEdit that will convert K&R<=>1TBS, if I should ever need to. But, I think your "shibboleth" example code is a bit mis-leading: nothing stops you from using "pure" K&S and writing:
if(condition}
{
statement;
}Or even:
if (condition) { statement; }
I've asked the braces directly how they feel about having only one statement, and they assure me they do not feel neglected or lonely :) I think lack of braces around one simple and short statement, following an if-clause is seldom written with braces no matter what style of formatting you use. Where omitting the braces would really "bother" me would be when the the single statement following the if-clause was so bloody long that it overflowed the text-working-area boundaries to be several lines long ! But, of course, you are, as usual, bulls-eye-center, when you emphasize you may not have personal choice if you go to work on some project where there are code formatting guidelines in place for all team members. Thank goodness C# does not allow multiple statements separated by colons, or "line-continuation" characters, as in the late Pleistocene when VB roamed the savannas, and real men did not eat quiche and programmed only in C and assembly language. best, Bill
"It is the mark of an educated mind to be able to entertain a thought without accepting it." Aristotle
Personally, I use braces round single statements, but then I grew up without auto-indenting IDEs, so it was too easy to get caught by assuming logic flow from the indentation:
if (condition)
statement;
statement;Which is one of the reasons I really dislike 1TBS: it can be far to easy to miss the opening bracket, particularly if the condition is quite long.
Ideological Purity is no substitute for being able to stick your thumb down a pipe to stop the water
-
Nah. It's clumsy and inconsistent with single statement indentation: If you write like this:
if (condition)
statement;Why would you change the indentation when it is a block you are using instead of a single statement?
if (condition)
{
statement;
statement;
}It's up to personal preference (or company practice) though - the important thing is to be consistent throughout.
Ideological Purity is no substitute for being able to stick your thumb down a pipe to stop the water