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
nanoFramework Firmware Flasher v1.2.0+d5d164cfbc | |
Copyright (C) 2019 nanoFramework project contributors | |
Connected to ESP32 ESP32D0WDQ6 (revision 1) with MAC address 30AEA42503B8 | |
features WiFi, BT, Dual Core, Coding Scheme None | |
Flash information: manufacturer 0x200 device 0x16406 size 4MB | |
Trying to find ESP32_WROOM_32 in developement repository...OK | |
Downloading firmware package...OK | |
Updating to 1.4.0-preview.87 | |
Erasing flash...OK |
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
class Program | |
{ | |
static ConcurrentDictionary<string, string> dict = new ConcurrentDictionary<string, string>(); | |
static void Main(string[] args) | |
{ | |
var t1 = new Thread(() => | |
{ | |
dict.GetOrAdd("key1", x => | |
{ |
NewerOlder