2014-12-17 9 views
0

Windows 용 Visual Studio express 2013을 사용하여 Windows 응용 프로그램에서 liblinear를 구현하고 있습니다. (링크 https://www.nuget.org/packages/Liblinear/입니다) 패키지 관리자를 nuget 사용 liblinear 설치 한 후 나는 그것을 사용하려고했다 :Windows 응용 프로그램 개발에서 System.TypeLoadException

using de.bwaldvogel.liblinear; 

을 그리고 코드에서 내가 입력 :

Parameter para = new Parameter(SolverType.MCSVM_CS, 1.0 , 0.01); 

을하지만, 실행 진술하면서 오류가 있습니다 :

를 nuget 패키지가 설치 될 때 또한
An exception of type 'System.TypeLoadException'occured in FileExplorer.DLL but was not 
handled in the user code. 
Additional Information: Could not load type 'System.Runtime.Serialization.Iserializable 
' from assembly 'mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e'. 
If there is a handler for this exception, the program may be safely continued. 

오류가 없습니다 있지만

,617을 알리는 경고가있다
Reference to type 'System.Runtime.Serialization.ISerializable' claims it is defined in 
'c:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\WindowsPhone\v8.0\mscorlib.dll', 
but it could not be found (in IKVM.OpenJDK.Core.dll) 

Reference to type 'System.Runtime.Serialization.SerializationInfo' claims it is defined 
in 'c:\Program Files (x86)\ReferenceAssemblies\Microsoft\Framework\WindowsPhone\v8.0 
\mscorlib.dll', but it could not be found (in IKVM.OpenJDK.Core.dll) 

누구나 나를 도와 줄 수 있습니까? Windows Phone 8.0 용 앱을 개발 중입니다.

답변

0

불행히도 ISerializable 인터페이스는 Windows Phone 8.x에서 사용할 수 없습니다. :(플랫폼 섹션 here을 확인하세요. This thread뿐만 아니라 추가 정보가 있습니다.

, 내가 직접 패키지의 저자와 접촉 얻을 것? 그렇다면 윈도우 폰에서 지원하기로 liblinear NuGet 패키지입니다.

+0

아니요, 지원되지 않음 (질문 게시 후 알 수 있음) Windows Phone의 svm (https : //github.com/cureos/accord)을 사용해보십시오. – user3747916