示例#1
0
        public async void Initializtion()
        {
            _storage = new TestStorage();

            await _storage.Write("string", "string");

            await _storage.Write("byte[]", new byte[] { 12, 23, 34 });

            await _storage.Write("stream", _stream);

            _storageProxy = new InMemoryStorageProxy(_storage, inMemory: false);
        }