Please comment below...
https://www.microsoft.com/net/architecture
https://github.com/0xd4d/dnSpy
- Use a XBox Controller to control your Angular2 App by Martin Kramer.
Please comment below...
https://www.microsoft.com/net/architecture
https://github.com/0xd4d/dnSpy
Please comment below...
https://www.microsoft.com/net/architecture
Azure
public class POCO | |
{ | |
public int Answer { get; set; } | |
} | |
//... | |
var db = DbContext.CreateDbContext(connectionString: | |
"Data Source=.\\SQL;Initial Catalog=tempdb;Integrated Security=True;Pooling=true;Max Pool Size=3000;"); | |
var ids = await db.QueryAsync("select [Answer] = object_id from sys.objects;"); | |
var pocoArray = ids.ToObjectArray<POCO>(); |
Please comment below...
https://github.com/DogusTeknoloji/BatMap
Please comment below...
Package: TinyORM
.NET
Please comment below...
JArray largeJson; | |
// read asynchronously from a file | |
using (FileStream asyncFileStream = new FileStream(@"large.json", FileMode.Open, FileAccess.Read, FileShare.Read, 4096, true)) | |
{ | |
largeJson = await JArray.LoadAsync(new JsonTextReader(new StreamReader(asyncFileStream))); | |
} | |
JToken user = largeJson.SelectToken("$[?(@.name == 'Woodard Caldwell')]"); | |
user["isActive"] = false; |
Please comment below...
using (var browser = new BrowserSession(new SessionConfiguration | |
{ | |
AppHost = "microsoft.com", | |
SSL = true, | |
Driver = typeof (SeleniumWebDriver), | |
Browser = Drivers.Browser.Firefox, | |
RetryInterval = TimeSpan.FromSeconds(0.1) | |
})) | |
{ | |
browser.FillIn("Attachment").With(@"c:\coypu\bigfile.mp4"); |
Please comment below...