RE: Quick "translation": VB to C#
If you don't want to state the lenght at the declaration and deal with array resising I would suggest that you use a typed collection.
In C#
System.Collections.Generic.List<IMoniker> moniker = new System.Collections.Generic.List<IMoniker>();
|