c# xamarin forms use AssetManager to get text file code example
Example: c# xamarin forms use AssetManager to get text file
// c# Xamarin Forms for Andriod
strin text = string.Empty;
string filename = "TestList.txt";
AssetManager assets = Android.App.Application.Context.Assets;
using (StreamReader reader = new StreamReader(assets.Open(filename)))
{
text = reader.ReadToEnd();
}