Created
September 10, 2016 17:11
-
-
Save twolfprogrammer/a8238b498e1931044353333cefc3a800 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using SQLite; | |
| namespace SQLiteExample { | |
| public interface ISQLiteService { | |
| SQLiteConnection GetConnection(string databaseName); | |
| long GetSize(string databaseName); | |
| } | |
| } | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment