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
| From | To | Province | |
|---|---|---|---|
| 1000 | 1299 | NL-NH | |
| 1300 | 1379 | NL-FL | |
| 1380 | 1384 | NL-NH | |
| 1390 | 1393 | NL-UT | |
| 1394 | 1394 | NL-NH | |
| 1396 | 1396 | NL-UT | |
| 1398 | 1425 | NL-NH | |
| 1426 | 1427 | NL-UT | |
| 1428 | 1429 | NL-ZH |
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
| PostalCode | Province | RegionCode | |
|---|---|---|---|
| 10011 | IT-TO | IT-21 | |
| 10060 | IT-TO | IT-21 | |
| 10070 | IT-TO | IT-21 | |
| 10010 | IT-TO | IT-21 | |
| 10040 | IT-TO | IT-21 | |
| 10080 | IT-TO | IT-21 | |
| 10091 | IT-TO | IT-21 | |
| 10020 | IT-TO | IT-21 | |
| 10010 | IT-TO | IT-21 |
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
| PostalCode | State | |
|---|---|---|
| 01067 | DE-SN | |
| 01069 | DE-SN | |
| 01097 | DE-SN | |
| 01099 | DE-SN | |
| 01108 | DE-SN | |
| 01109 | DE-SN | |
| 01127 | DE-SN | |
| 01129 | DE-SN | |
| 01139 | DE-SN |
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
| Postcode | ISO 3166-2 | |
|---|---|---|
| 1000 | BE-BRU | |
| 1020 | BE-BRU | |
| 1030 | BE-BRU | |
| 1040 | BE-BRU | |
| 1050 | BE-BRU | |
| 1060 | BE-BRU | |
| 1080 | BE-BRU | |
| 1081 | BE-BRU | |
| 1082 | BE-BRU |
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
| // Copied and modified from the Dynamic Data project under MIT license | |
| // https://github.com/reactivemarbles/DynamicData/blob/main/LICENSE | |
| using System; | |
| using System.Collections.Generic; | |
| using System.Collections.Immutable; | |
| using System.ComponentModel; | |
| using System.Diagnostics.CodeAnalysis; | |
| using System.Reactive.Linq; | |
| using DynamicData.Cache.Internal; |
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
| using System; | |
| using System.Runtime.InteropServices; | |
| namespace SetTouchSettings | |
| { | |
| class Program | |
| { | |
| private static class NativeMethods | |
| { | |
| [DllImport("user32.dll", EntryPoint = "SystemParametersInfo", SetLastError = true)] |
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
| enum NonCopyable { | |
| Node ( Box<NonCopyable> ), | |
| Leaf | |
| } | |
| fn do_stuff() -> NonCopyable { | |
| let x = NonCopyable::Leaf; | |
| match try_wrap(x) { | |
| (val, true) => val, | |
| (val, false) => val, |
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
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Reactive; | |
| using System.Reactive.Linq; | |
| using System.Reactive.Subjects; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| using Microsoft.Reactive.Testing; |
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
| using System; | |
| using System.Threading.Tasks; | |
| namespace Microsoft.Practices.Prism.Interactivity.InteractionRequest | |
| { | |
| public static class InteractionRequestMixins | |
| { | |
| public static async Task<T> RaiseAsync<T>(this InteractionRequest<T> request, T context) where T : INotification | |
| { | |
| return await AwaitCallbackResult<T>(callback => request.Raise(context, callback)); |
NewerOlder