Считать тектовый файл из Assets Android

Хочу считать тектовый файл из Assets, но никак не выходит Код который в справке Microsoft не компилируется, подчеркивает Assets

using Android.Content.Res;
using System;
using System.Collections.Generic;
using System.IO;
using System.Timers;
using Xamarin.Forms;
using Xamarin.Forms.Xaml;

     AssetManager assets = Forms.Context.Assets;
                string content;
                using (StreamReader sr = new StreamReader(assets.Open("AboutAssets.txt")))
                {
                    content = sr.ReadToEnd();
                }

Ответы (0 шт):