I am trying to include a CSV file in my xamarin.forms project. The problem is that I think it is available only for all platforms at once, when I use this file as an embedded resource. My assembly has only three methods:
Equals() Load() ReferenceEquals()
But I need Assembly.GetExecutingAssembly() to get my code working.
Do you know how to solve this? Or maybe an alternative? Btw: I am working with Visual Studio 2013 Ultimate and trial license Xamarin.Android/iOS
Edit: I assume this needs to be done. with Xamarin.Forms. A typical desktop application has Assembly.GetExecutingAssembly (); and it works fine, but I need this in my application :(
Edit 2: I'm trying this now: http://developer.xamarin.com/guides/cross-platform/xamarin-forms/working-with/files/#Loading_Files_Embedded_as_Resources
source share