I have downloaded a chart control (upon suggestion of one of this board member ).

I am trying to call this chart control and I am not able to progress. can some one take a look at this?

the code in the chart control is like this. this is downloaded code and not mine.

public class g01
{


public g01()
{
}
public void CreateChart(ref Chart chart1)
{


// Set the title.
chart1.Title="My Chart";


}

I wrote this code that calls this CreateChart method. But I don't know how to pass parameters to CreateChart method.
class Program
{
static void Main(string[] args)
{
g01 MSFTChart = new g01();

///next line I am stuck.
MSFTChart.CreateChart(ref Chart);
}
}