Xamarin Studio intellisense misbehaving on LINQ queries

When I enter a LINQ query in Xamarin Studio 5.10.3 (build 51), autocomplete starts offering the wrong things, for example, in join s in doc.Descendants("Supplier") it will automatically correct s to sim :

enter image description here

Or in on (int)p.Attribute("SupplierID") , it will automatically adjust (int) to (into) . These persistent incorrect auto-corrections make it difficult to write LINQ queries to MonoDevelop.

Is it possible to fix intellisense so that it works correctly? If not, can I at least turn it off for LINQ queries, so I donโ€™t need to constantly return and cancel incorrect auto-corrections?

+8
c # linq intellisense xamarin-studio
source share
1 answer

Try upgrading to the latest version of Xamarin Studio (currently sitting in 6.x). I had no problem with LINQ in this.

At this time, the last one was 6.0.0.5174:

http://download.xamarin.com/studio/Windows/XamarinStudio-6.0.0.5174-0.msi

Here you can find it from your account:

enter image description here

+5
source share

All Articles