473,804 Members | 3,674 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

'member names cannot be the same as their enclosing type

Nik

I keep getting the following error 'member names cannot be
the same as their enclosing type' with the code below.

public class HelpText
{
private string _textToDisplay;
private string _cssClass;

public string TextToDisplay {
get {return _textToDisplay; }
set {_textToDisplay = value;}
}

public string CssClass {
get {return _cssClass;}
set {_cssClass = value;}
}

public string HelpText()
{
WebAuthorContex t authorContext =
WebAuthorContex t.Current();

//Check if in edit mode
if (authorContext. Mode ==
WebAuthorContex tMode.Authoring New || authorContext.M ode ==
WebAuthorContex tMode.Authoring Reedit) {
HelpText = "<span
class=\"" + CssClass + "\">" + TextToDisplay + "</span>";
}
} }

any ideas?
Nov 15 '05 #1
5 32729
You declare a constructor for the class HelpText that returns a value - a string. Constructors do not return any type. They just construct the object of the type. You should move the code that returns your constructed string to another method. Although, you can still build the string in the constructor and store it in a member variable.

--
Cezary Nolewajka
mailto:c.****** *************** @no-sp-am-eh-mail.com
remove all "no-sp-am-eh"s to reply
"Nik" <an*******@disc ussions.microso ft.com> wrote in message news:90******** *************** *****@phx.gbl.. .

I keep getting the following error 'member names cannot be
the same as their enclosing type' with the code below.

public class HelpText
{
private string _textToDisplay;
private string _cssClass;

public string TextToDisplay {
get {return _textToDisplay; }
set {_textToDisplay = value;}
}

public string CssClass {
get {return _cssClass;}
set {_cssClass = value;}
}

public string HelpText()
{
WebAuthorContex t authorContext =
WebAuthorContex t.Current();

//Check if in edit mode
if (authorContext. Mode ==
WebAuthorContex tMode.Authoring New || authorContext.M ode ==
WebAuthorContex tMode.Authoring Reedit) {
HelpText = "<span
class=\"" + CssClass + "\">" + TextToDisplay + "</span>";
}
} }

any ideas?

Nov 15 '05 #2
"Nik" <an*******@disc ussions.microso ft.com> wrote:

<snip>
HelpText = "<span
class=\"" + CssClass + "\">" + TextToDisplay + "</span>";


Why are you assigning *HelpText* a string value? HelpText is the name
of your class!

<snip>
Nov 15 '05 #3

"C# Learner" <cs****@learner .here> wrote in message
news:2c******** *************** *********@4ax.c om...
"Nik" <an*******@disc ussions.microso ft.com> wrote:

<snip>
HelpText = "<span
class=\"" + CssClass + "\">" + TextToDisplay + "</span>";
Why are you assigning *HelpText* a string value? HelpText is the name
of your class!


In VB, it's how you return a value.


<snip>

Nov 15 '05 #4
I can't understand what you're try to do from your code.
What are you trying to do?

- pete

"Nik" <an*******@disc ussions.microso ft.com> wrote in message
news:90******** *************** *****@phx.gbl.. .

I keep getting the following error 'member names cannot be
the same as their enclosing type' with the code below.

public class HelpText
{
private string _textToDisplay;
private string _cssClass;

public string TextToDisplay {
get {return _textToDisplay; }
set {_textToDisplay = value;}
}

public string CssClass {
get {return _cssClass;}
set {_cssClass = value;}
}

public string HelpText()
{
WebAuthorContex t authorContext =
WebAuthorContex t.Current();

//Check if in edit mode
if (authorContext. Mode ==
WebAuthorContex tMode.Authoring New || authorContext.M ode ==
WebAuthorContex tMode.Authoring Reedit) {
HelpText = "<span
class=\"" + CssClass + "\">" + TextToDisplay + "</span>";
}
} }

any ideas?

Nov 15 '05 #5
Nik wrote:
I keep getting the following error 'member names cannot be
the same as their enclosing type' with the code below.


The class HelpText may not contain a method named HelpText. Only
constructors may have the same name as their enclosing type.

--
There are 10 kinds of people. Those who understand binary and those who
don't.

http://code.acadx.com
(Pull the pin to reply)
Nov 15 '05 #6

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

Similar topics

22
2255
by: BRIAN VICKERY | last post by:
I've heard that some compilers reserve the '_' starting a symbol for system variables/symbols. I can not find this documented anywhere (so far). I've used an '_' at the end of member variables (ie. Uint16 bar_; ) to distinquish private fields, but this does not stand out as much as if the '_' were at the begginning of the name as in the following class declaration. class Foo { private: Uint16 _baz;
5
3138
by: Walter Tross | last post by:
Somebody with a very regulatory mind in this newsgroup has written that it's better not to use a leading underscore for class member names, because names with a leading underscore are used internally by compilers (well, not so internally, since they appear in header files). I personally use the leading underscore (followed by a lower case letter), which I consider to be much more readable than the trailing underscore. My reasoning is...
1
24253
by: | last post by:
in sub class i can't define a constructor it give me error when i want it to... "category member names cannot be the same as their enclosing type" namespace Database { public class Structure { public class category {
6
14569
by: Tim Cartwright | last post by:
I have a page that has the login control on it, nothing else. This page inherits from a master page, neither page has any code in it. This page works perfectly when running on the WebDev debug web server. I am able to log in. However after publishing the page to my local IIS, it results in the below error. This error is occurring on the Visual Studio.Net 2k5 release version, but did not occur on the beta 2, same code. A point of interest, is...
4
1322
by: Turbot | last post by:
Hello, I have an ENUM that looks like this: Public Enum Locations As Byte Top_Left Top_Middle Top_Right Middle_Left Middle_Middle
2
8640
by: Sharon | last post by:
Hi all. I have a console app which is a remoting server. When trying to access the server using console app client, it works fine. But when i try the same client code from aspx page on iis i get this: RemotingException: Cannot load type Any ideas? Thanks, Sharon.
1
4497
by: Veerle | last post by:
Hi, I generate class from xsd files using XSDObjectGen. But the generated code doesn't compile because there are properties with the same name as the class name, which is not allowed in C# : "member names cannot be the same as their enclosing type". I cannot alter the xsd files, because they are third party xsds, and the generated xml has to conform to this xsd schemas in order for us to be able to use them. Is there some kind of...
1
1584
by: asmx126453 | last post by:
hey guys next question :p its about the member names that the cant be the same the precies error is this 'VerzamelbladOverzicht': member names cannot be the same as their enclosing type its about this page VerzamelbladOverzicht.aspx <%@ Page language="c#" Inherits="DotNet.VerzamelbladOverzicht" debug="False" CodeFile="VerzamelbladOverzicht.aspx.cs" %> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
1
2910
by: Ravikant Varma | last post by:
public partial class frmStoreMaster { private void FillData(string StoreID) { DAStoreMaster objStoreMst = new DAStoreMaster(); try {
0
10562
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10319
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10303
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10070
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9132
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7608
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5639
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4282
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2978
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.