Wpf XAML WP8中的错误描述

Wpf XAML WP8中的错误描述,wpf,xaml,windows-phone-8,Wpf,Xaml,Windows Phone 8,我在WP8项目中有此警告,但它不会损害程序。你能告诉我那是什么吗 Warning The predefined type 'System.Tuple' is defined in multiple assemblies in the global alias; using definition from 'c:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\WindowsPhone\v8.0\mscorlib.dll'

我在WP8项目中有此警告,但它不会损害程序。你能告诉我那是什么吗

Warning The predefined type 'System.Tuple' is defined in multiple assemblies in the global alias; using definition from 'c:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\WindowsPhone\v8.0\mscorlib.dll'    C:\Users\Rony Fhebrian Yusuf\documents\visual studio 2012\Projects\Help!\Help!\CSC

正如Romasz所说,可能有多个程序集定义相同的类型


要消除任何可能的歧义,您可以使用类型的完整路径,例如:“A.B.C.TheType”。

您有两个程序集,它们定义了相同的类型系统。Touple和program会通知您将使用哪一个程序集。