In VBA one can select multiple worksheets by passing an array. How is this
same thing accomplished using C#?

I would like to select a number of worksheet from the entire workbook for a
print preview. Thus having only the selected worksheets appear in the
preview.
The following shows the entire workbook.

objExcel.Worksheets.PrintPreview(Missing.Value);

Steve