I'm new in C# world. I have a COM server written in C++ and in some situation it returns a variant_t::missing(). When I try to receive that value in C#:
object a;
a = comServer.Value // Value returns missing
it throws a exception that I cannot event handle in C#.
How I should do?