Page 1 of 1

.Net remoting properties

Posted: 07 Mar 2016, 11:59
by dekacko
Hi,

I am trying to write wrapper to handle all aviable externals. ints, floats, strings, color etc. are all ok, but I came across a problem with enumeration type.

call like this always ends up with error for enum

IExternalCollection externals = scene.Externals;
foreach(IExternalProperty iep in externals)
{
Console.WriteLine(iep.Value);
}

Is there any way to get more info about enum externals? keys, values?

Any help would be much appreciated