csharp xamarin forms use AssetManager to get text file

Code Example - csharp 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();
}