1234567891011121314151617 |
- namespace Caliburn.Micro.Core {
- /// <summary>
- /// Access the current <see cref="IPlatformProvider"/>.
- /// </summary>
- public static class PlatformProvider {
- private static IPlatformProvider current = new DefaultPlatformProvider();
- /// <summary>
- /// Gets or sets the current <see cref="IPlatformProvider"/>.
- /// </summary>
- public static IPlatformProvider Current {
- get { return current; }
- set { current = value; }
- }
- }
- }
|