static void Main()
{
videostreaming();
}
it work perfect. but when i let videostreaming() run in seperate thread:
static void Main()
{
Thread thread = new Thread(videostreaming);
thread.Start();
}
public void videostreaming()
{
verbindet mit Video Server und führt video streaming aus.
}
there is Probelm:
The COM-Object of Type "System.__ComObect" can not be converted....
some one can help me ?
thanks for all of the Tip.
Alex