hello, sorry to bothering all.
May I know what is the coding to bring a value from a class's constructor?
Below is the class.
Let's say i wan bring the value of ABC.bb from the class to a window form. How to pass the value from the class??
Please help. Thanks in advance. :)
By, Aeris.
May I know what is the coding to bring a value from a class's constructor?
Below is the class.
Code:
public class ABC
{
public String aa;
public String bb;
public Int32 cc;
public ABC(String Aa, String Bb, Int32 Cc)
{
this.aa = Aa;
this.bb = Bb;
this.cc = Cc;
}
}
Let's say i wan bring the value of ABC.bb from the class to a window form. How to pass the value from the class??
Please help. Thanks in advance. :)
By, Aeris.
Comment