473,468 Members | 4,558 Online
Bytes | Software Development & Data Engineering Community
Create 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()
{
WebAuthorContext authorContext =
WebAuthorContext.Current();

//Check if in edit mode
if (authorContext.Mode ==
WebAuthorContextMode.AuthoringNew || authorContext.Mode ==
WebAuthorContextMode.AuthoringReedit) {
HelpText = "<span
class=\"" + CssClass + "\">" + TextToDisplay + "</span>";
}
} }

any ideas?
Nov 15 '05 #1
5 32716
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*******@discussions.microsoft.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()
{
WebAuthorContext authorContext =
WebAuthorContext.Current();

//Check if in edit mode
if (authorContext.Mode ==
WebAuthorContextMode.AuthoringNew || authorContext.Mode ==
WebAuthorContextMode.AuthoringReedit) {
HelpText = "<span
class=\"" + CssClass + "\">" + TextToDisplay + "</span>";
}
} }

any ideas?

Nov 15 '05 #2
"Nik" <an*******@discussions.microsoft.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.com...
"Nik" <an*******@discussions.microsoft.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*******@discussions.microsoft.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()
{
WebAuthorContext authorContext =
WebAuthorContext.Current();

//Check if in edit mode
if (authorContext.Mode ==
WebAuthorContextMode.AuthoringNew || authorContext.Mode ==
WebAuthorContextMode.AuthoringReedit) {
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
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...
5
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...
1
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...
6
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...
4
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
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...
1
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# :...
1
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...
1
by: Ravikant Varma | last post by:
public partial class frmStoreMaster { private void FillData(string StoreID) { DAStoreMaster objStoreMst = new DAStoreMaster(); ...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
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
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...
1
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...
0
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,...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
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 ...

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.