Not sure if I am explaining this correctly but here goes..
I am working on a .dll that depending on a value determined at startup, will select which method to use next.
At the very beginning of this dll,
private string _Ver = Application.ProductVersion;
Now if _Ver < 2 then use
public List<System.Windows.Forms.Form> Startup()
{
//code here
}
If _Ver > 2 then use
public void Startup()
{
//code here
}
Can this be done?
if so, how?
Steve