public class MyComponentA
{
private string _param1 = "ABC";
private int _param2 = 123;
private bool _open=false;
private string _status;
// Creates a new instance of the component.
public MyComponentA()
{
_status = "Created";
Console.WriteLine("MyComponentA has been created.");
}
}