Click here to Skip to main content
15,920,896 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
C#
void client_GetProductDictionariesCompleted(object sender, GetProductDictionariesCompletedEventArgs e)
        {
            DictionaryCache.ProductDictionaries = e.Result;
            acbProduct.Visibility = Visibility.Visible;
            acbProduct.ItemsSource = DictionaryCache.ProductDictionaries.Products;
        }

C#







Error 22 Cannot implicitly convert type 'Adcheck.ServiceReference1.ProductDictionaries' to 'SLAdcheckBusinnesObjects.Dictionaries.ProductDictionaries' D:\Factory\factory code\BMI\Adcheck\Adcheck\Controls\Contents\ProductLevelCaptureData.xaml.cs 105 51 Adcheck
Posted
Comments
BillWoodruff 24-Nov-14 3:07am    
Without context information ... what the objects are ... I don't think we can help you.

Looks like you are not alone:

http://stackoverflow.com/questions/27019761/error26-ambiguous-reference-vs2012

This isn't a question we can answer: you need to talk to whoever created the library or libraries that contain the two types: we don't even know if they are related!
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900