我从NuGet下载了软件包,但仍然没有SQLite.cs,SQLiteAsync.cs也没有添加到项目中,如果SQLite-NET仍然不支持VS 2015 RTM,还有其他可能的选择吗?
请注意,我尝试过SQLite.NET-PCL,但问题仍然存在.
假设我有一个复制构造函数
第一种方式:
Car(Car const& other)
: Model{other.Model}, Something{other.Something}
{}
Run Code Online (Sandbox Code Playgroud)
第二种方式:
Car(Car const& other)
{
Model = other.Model;
Something = other.Something;
}
Run Code Online (Sandbox Code Playgroud)