我对这行代码有疑问。想在设备上创建 sqlite 数据库。
string dbPath = System.Environment.GetFolderPath(System.Environment.SpecialFolder.Personal) + "\\test.db";
if (!System.IO.File.Exists(dbPath))
using (System.IO.Stream sr = ***Assets***.Open("test.db"))
{
using (System.IO.Stream srTo = System.IO.File.Create(dbPath))
{
sr.CopyTo(srTo);
}
}
此消息给出:名称“资产”在当前上下文中不存在
有一个类似的项目,但比big更全面。没有错误。他们的资产在我遵循的定义中定义了 c 驱动器中的一个 cs 文件,提供了对 Android.Content.ContextWrapper 的引用。不在项目路径上。[文件如何被添加应用程序?