Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Accessing overloaded constructors
Message
De
13/09/2004 15:48:47
 
Information générale
Forum:
ASP.NET
Catégorie:
Autre
Divers
Thread ID:
00941066
Message ID:
00941702
Vues:
31
Rick,

Nope back at ya <g> ... that was the problem that Rex first posted about. You get an error if you use base:
public class MyControl : UserControl
{
    private TextBox MyTextBox;
    // and other control declarations

    public MyControl()
    {
        InitializeComponent();
    }

    public MyControl(string InitString):base()
    {
        this.MyTextBox.Text = InitString;
    }

    // etc.etc.etc.
}
Change the :base() to :this() and it works fine (and it makes sense if you think about it) ... I wonder if you were thinking about some other scenario?

~~Bonnie

>Nope. It's:
>
>
public MyClass(int x, int y):base()
>
>
>>Neil,
>>
>>Oh yeah, I forgot about that.
>>
>>public MyClass(int x, int y):this()
>>{
>>    // code here
>>}
>>
>>Thanks for reminding me. =)
>>
>>~~Bonnie
>>
>>>Rex,
>>>
>>>This is known as constructor chaining and involves the use of this. A good example of chaining and most constructor related issues can be found at the following site.
>>>
>>>http://www.c-sharpcorner.com/Language/ConsNDestructorsInCSRVS.asp
>>>
>>>regards
>>>Neil
Bonnie Berent DeWitt
NET/C# MVP since 2003

http://geek-goddess-bonnie.blogspot.com
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform