I have to use direct x sdk for my team project. but there's a problem with Microsoft.DirectX.AudioVideoPlayback.
if there are some apis or instructions about directX sdk in project, Whole project is freezed. whole project had no problem before using directX sdk.
in debugging mode, other instruction is passed well. but there was a problem when I access a method that has a directx sdk.
for examle method1 is passed well, but in method2 project is freezed.
//source code 1
public void test(){
method1();
method2(); //whole project is freezed here. can't access inside of method.
}
public void method1(){
//Microsoft.DirectX.AudioVideoPlayback.Video video;
}
public void method2(){
Microsoft.DirectX.AudioVideoPlayback.Video video;
}
I'm using visual studio 2013 c#. and I success installing and adding to refference about Microsoft.DirectX.AudioVideoPlayback