I have an image stitching task that could take a lot of time so I run it as a seperate task like this
var result = openFileDialog.ShowDialog();
BeginInvoke(new Action<string[]>(StitchTask), openFileDialog.FileNames);
private void StitchTask(string[] fileNames)
{
// this task could take a lot of time
}
Do I need to worry about the co-variant array conversion warning below or am I doing something wrong?
Co-variant array conversion from string[] to object[] can cause run-time exception on write operation
object[]... – Jon Skeet Feb 15 '12 at 15:45