IDL Complex Type
any The CORBA any maps to Org.Omg.CORBA.Any in C#.  As java mapping, CORBA.any comes with methods to insert or extract the values stored within CORBA.Any instances.
// CORBA IDL
wstring generic(in any a);
// C#

string Generic(Org.Omg.CORBA.Any a);