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
| // These classes would go in your PCL | |
| public interface IWrappedCollectionView | |
| { | |
| bool MoveCurrentTo(object item); | |
| bool MoveCurrentToPosition(int position); | |
| bool IsCurrentAfterLast { get; } | |
| bool MoveCurrentToFirst(); | |
| bool IsCurrentBeforeFirst { get; } | |
| bool MoveCurrentToLast(); |
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.Runtime.InteropServices; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| // OBSOLETE!!! Use the Nuget WinRTTimeZones package for the latest or | |
| // get the code at https://github.com/onovotny/WinRTTimeZones | |
| namespace TimeZoneUtils |
NewerOlder