问题
I am adapting a large open-source Windows program to Linux, using MonoDevelop. I find that the SQLite method names in Windows look like this:
SQLiteConnection
but in Mono.Data.Sqlite they look like this:
SqliteConnection
with different case, so I got lots of reference errors.
With help from others at stackexchange here I was able to get the projects to compile.
Do any of you know why the two different versions of SQLite have different case in the method names?
来源:https://stackoverflow.com/questions/40649414/anybody-know-why-mono-sqlite-uses-sqliteconnection-but-windows-uses-sqliteconnec