lorem ipsum
This file contains 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 (var protoFile = File.Create("data.bin")) | |
{ | |
ProtoBufUtils.GetModel<Customer>().Serialize(protoFile, allCustomers); | |
} | |
using (var protoFile = File.OpenRead("data.bin")) | |
{ | |
_customers = ProtoBufUtils.GetModel<Customer>().Deserialize<List<Customer>>(protoFile); | |
} |
This file contains 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
<html> | |
<body> | |
<div id="infoDiv">...<br /></div> | |
<script type="text/javascript"> | |
async function DoTest() { | |
var infoDiv = document.getElementById("infoDiv"); | |
let wakeLock = null; |