Can you pass A into your DoSomething method?.
When you're inside a class, 'this' refers to the current instance of
that class.

Class A
{
    ....
   Class B clsb = New Class B();
   clsb.DoSomething(int a, int b, this)
}

Class B
{
...
    public void DoSomething(int a, int b, ClassA nameA )
     {
       ....
      //I want to be able to reference to the loaded instance of the
Class A. (not a new instance)

    NameA.DoStuffWithCallingInstance

    }
}





On Mar 29, 10:14 pm, Learner <[email protected]> wrote:
> Hi,
>
>   I have two classes say Class A and Class B. I am trying to find how
> do I get reference of Class A in Class B.
>
> I do not want to get a new instance of Class A. I want to be able to
> reference to the loaded instance.
>
> Class A
> {
>     ....
>    Class B clsb = New Class B();
>    clsb.DoSomething(int a, int b)
>
> }
>
> Class B
> {
> ...
>     public void DoSomething(int a, int b)
>      {
>        ....
>       //I want to be able to reference to the loaded instance of the
> Class A. (not a new instance)
>     }
>
> }
>
> Can some one please help me with this.
>
> Thanks,
> L

-- 
You received this message because you are subscribed to the Google
Groups "DotNetDevelopment, VB.NET, C# .NET, ADO.NET, ASP.NET, XML, XML
Web Services,.NET Remoting" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/dotnetdevelopment?hl=en?hl=en
or visit the group website at http://megasolutions.net

Reply via email to