473,387 Members | 1,300 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

compiling

hi, couls somebody have a look at this code and advise me were im going
wrong, im getting errors like with the first { but if i try to alter
this then the if's through up errors. It is part of other code but each
of the other regions have no errors. I am a complete beginner so Im
sorry if I ve missed something obvious.
#region Private methods
/*** Check header is valid**/
private bool IsAValidHeader(string minorErrorCode, APIResponseHeader
header);
{
bool rtn = true;
if (minorErrorCode != null)

{
errorMessage = "Minor error code; " + minorErrorCode;

}

if (header.minorErrorCode != null);

{
errorMessage = "Minor error code" + header.minorErrorCode;
}

if (header.errorCode != APIErrorEnum.OK);

{
errorMessage = "Header error" + header.errorCode.ToString();
rtn = false;
}

return rtn;
}

#endregion

Regards Robert

May 4 '06 #1
3 1005
Remove ; after the method header.

Ro********@yahoo.co.uk wrote:
hi, couls somebody have a look at this code and advise me were im going
wrong, im getting errors like with the first { but if i try to alter
this then the if's through up errors. It is part of other code but each
of the other regions have no errors. I am a complete beginner so Im
sorry if I ve missed something obvious.
#region Private methods
/*** Check header is valid**/
private bool IsAValidHeader(string minorErrorCode, APIResponseHeader
header);
{
bool rtn = true;
if (minorErrorCode != null)

{
errorMessage = "Minor error code; " + minorErrorCode;

}

if (header.minorErrorCode != null);

{
errorMessage = "Minor error code" + header.minorErrorCode;
}

if (header.errorCode != APIErrorEnum.OK);

{
errorMessage = "Header error" + header.errorCode.ToString();
rtn = false;
}

return rtn;
}

#endregion

Regards Robert

May 4 '06 #2
Thankyou very much for your reply, that has solved the errors. Is this
the norm for method headers.
Regards Robert

May 4 '06 #3
Ro********@yahoo.co.uk wrote:
Thankyou very much for your reply, that has solved the errors. Is this
the norm for method headers.
Regards Robert


Yes. A method definition looks like this:

modifiers type name(parameters) { code }

not:

modifiers type name(parameters); { code }
May 4 '06 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Martin Bless | last post by:
I need to access a MSSQL database (MS-Sql, not MySQL!)and would very much like to use mssql-0.09.tar.gz which is available from http://www.object-craft.com.au/projects/mssql/download.html ...
3
by: modemer | last post by:
Hello, I got weird compiling message similar like following when I compiled my simple code on Sun 5.8 with CC WorkShop 6 update 2 C++ 5.3. CC -g -o myclass.o -c myclass.cpp CC -g -o main.o...
0
by: David W. Fenton | last post by:
Today I was working on a hideous old app that I created a long time ago that does a lot of showing/hiding/resizing of fields on one of the forms. I had used constants to store reference values for...
4
by: Aaron Queenan | last post by:
When I build a C++ library to .NET using the managed C++ compiler, I get the following error message: Linking... LINK : error LNK2020: unresolved token (0A000005) _CrtDbgReport LINK : error...
2
by: Rudy Ray Moore | last post by:
Hi guys, I just upgraded to "Visual Studio .net 2003 7.1 c++" from VS6. Some things I like (proper for loop variable scoping, for example), but some other things are troubling me. One...
1
by: Jim Heavey | last post by:
Hello, trying to round out my knowlege here about compiling. To date I have used VS.Net to do all my compiling "majically", but I want to understand how to do it on my own, should the need ever...
10
by: Christina N | last post by:
When compiling my ASP.Net application, VS puts the new DLL under the local cached directory 'VSWebCache' in stead of on the server. How can I make it save the DLL file on the server when compiling?...
2
by: Justin Naidl | last post by:
A group of friends and I are doing a RPG (role-playing game) maker for a school project. It occured to us, however, that if you want the user to be able to have almost complete control over the...
8
by: WebSnozz | last post by:
I have an application written in C that does a lot of low level stuff. It does a lot of things like casting from void*'s. I want to create a new GUI for it in either C# or MC++, but reuse the...
0
by: =?Utf-8?B?amVmZmVyeQ==?= | last post by:
i need help compiling code dynamically it may involve some reflection so if any one is any good in that field or compiling code this would be a great time to show me what you know. by the way my...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.