mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 15:45:42 +03:00
24 lines
572 B
C#
24 lines
572 B
C#
|
using Bit.Core.Services;
|
|||
|
using System;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Bit.Playground
|
|||
|
{
|
|||
|
public class Program
|
|||
|
{
|
|||
|
public static void Main(string[] args)
|
|||
|
{
|
|||
|
MainAsync(args).Wait();
|
|||
|
Console.ReadLine();
|
|||
|
}
|
|||
|
|
|||
|
public static async Task MainAsync(string[] args)
|
|||
|
{
|
|||
|
var db = new LiteDbStorageService("test.db");
|
|||
|
await db.SaveAsync("testkey", new { val = 1 });
|
|||
|
Console.WriteLine(await db.GetAsync<object>("testkey"));
|
|||
|
Console.ReadLine();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|