mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-02-17 05:35:07 +00:00
refactor: Changed DateTime extension method to a simple util method
This commit is contained in:
@@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
- Added an extension method for getting the hour in 12 hour format
|
- Added a method for converting 24 hour to 12 hour format
|
||||||
|
|
||||||
## [9.8.0] - 2019-09-03
|
## [9.8.0] - 2019-09-03
|
||||||
### Added
|
### Added
|
||||||
|
|||||||
17
ICD.Common.Utils.Tests/DateTimeUtilsTest.cs
Normal file
17
ICD.Common.Utils.Tests/DateTimeUtilsTest.cs
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
using NUnit.Framework;
|
||||||
|
|
||||||
|
namespace ICD.Common.Utils.Tests
|
||||||
|
{
|
||||||
|
[TestFixture]
|
||||||
|
public sealed class DateTimeUtilsTest
|
||||||
|
{
|
||||||
|
[TestCase(1, 1)]
|
||||||
|
[TestCase(0, 12)]
|
||||||
|
[TestCase(12, 12)]
|
||||||
|
[TestCase(23, 11)]
|
||||||
|
public void Get12Hour(int hour, int expected)
|
||||||
|
{
|
||||||
|
Assert.AreEqual(expected, DateTimeUtils.To12Hour(hour));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,21 +1,10 @@
|
|||||||
using System;
|
using NUnit.Framework;
|
||||||
using ICD.Common.Utils.Extensions;
|
|
||||||
using NUnit.Framework;
|
|
||||||
|
|
||||||
namespace ICD.Common.Utils.Tests.Extensions
|
namespace ICD.Common.Utils.Tests.Extensions
|
||||||
{
|
{
|
||||||
[TestFixture]
|
[TestFixture]
|
||||||
public sealed class DateTimeExtensionsTest
|
public sealed class DateTimeExtensionsTest
|
||||||
{
|
{
|
||||||
[TestCase(1, 1)]
|
|
||||||
[TestCase(0, 12)]
|
|
||||||
[TestCase(12, 12)]
|
|
||||||
[TestCase(23, 11)]
|
|
||||||
public void Get12Hour(int hour, int expected)
|
|
||||||
{
|
|
||||||
Assert.AreEqual(expected, new DateTime(2019, 1, 1, hour, 0, 0).Get12Hour());
|
|
||||||
}
|
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
public void ToShortTimeStringTest()
|
public void ToShortTimeStringTest()
|
||||||
{
|
{
|
||||||
|
|||||||
15
ICD.Common.Utils/DateTimeUtils.cs
Normal file
15
ICD.Common.Utils/DateTimeUtils.cs
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
namespace ICD.Common.Utils
|
||||||
|
{
|
||||||
|
public static class DateTimeUtils
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Converts the hour in 24 hour format to 12 hour format (1 through 12).
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="hour"></param>
|
||||||
|
/// <returns></returns>
|
||||||
|
public static int To12Hour(int hour)
|
||||||
|
{
|
||||||
|
return ((hour + 11) % 12) + 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -10,16 +10,6 @@ namespace ICD.Common.Utils.Extensions
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public static class DateTimeExtensions
|
public static class DateTimeExtensions
|
||||||
{
|
{
|
||||||
/// <summary>
|
|
||||||
/// Gets the hour in 12 hour format (1 through 12).
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="extends"></param>
|
|
||||||
/// <returns></returns>
|
|
||||||
public static int Get12Hour(this DateTime extends)
|
|
||||||
{
|
|
||||||
return ((extends.Hour + 11) % 12) + 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Replacement for missing DateTime.ToShortTimeString() absent from NetStandard.
|
/// Replacement for missing DateTime.ToShortTimeString() absent from NetStandard.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|||||||
@@ -86,6 +86,7 @@
|
|||||||
<Compile Include="Comparers\PredicateComparer.cs" />
|
<Compile Include="Comparers\PredicateComparer.cs" />
|
||||||
<Compile Include="Comparers\SequenceComparer.cs" />
|
<Compile Include="Comparers\SequenceComparer.cs" />
|
||||||
<Compile Include="ConsoleColor.cs" />
|
<Compile Include="ConsoleColor.cs" />
|
||||||
|
<Compile Include="DateTimeUtils.cs" />
|
||||||
<Compile Include="Email\EmailClient.cs" />
|
<Compile Include="Email\EmailClient.cs" />
|
||||||
<Compile Include="Email\eMailErrorCode.cs" />
|
<Compile Include="Email\eMailErrorCode.cs" />
|
||||||
<Compile Include="Email\EmailStringCollection.cs" />
|
<Compile Include="Email\EmailStringCollection.cs" />
|
||||||
|
|||||||
@@ -190,6 +190,16 @@ namespace ICD.Common.Utils
|
|||||||
return CrestronEnvironment.GetLocalTime();
|
return CrestronEnvironment.GetLocalTime();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static void SetLocalTime(DateTime localTime)
|
||||||
|
{
|
||||||
|
CrestronEnvironment.SetTimeAndDate((ushort)localTime.Hour,
|
||||||
|
(ushort)localTime.Minute,
|
||||||
|
(ushort)localTime.Second,
|
||||||
|
(ushort)localTime.Month,
|
||||||
|
(ushort)localTime.Day,
|
||||||
|
(ushort)localTime.Year);
|
||||||
|
}
|
||||||
|
|
||||||
public static eEthernetEventType GetEthernetEventType(Crestron.SimplSharp.eEthernetEventType type)
|
public static eEthernetEventType GetEthernetEventType(Crestron.SimplSharp.eEthernetEventType type)
|
||||||
{
|
{
|
||||||
switch (type)
|
switch (type)
|
||||||
|
|||||||
@@ -79,6 +79,16 @@ namespace ICD.Common.Utils
|
|||||||
return DateTime.Now;
|
return DateTime.Now;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static void SetLocalTime(DateTime localTime)
|
||||||
|
{
|
||||||
|
#if DEBUG
|
||||||
|
IcdConsole.PrintLine(eConsoleColor.Magenta, "Debug Build - Skipped setting local time to {0}",
|
||||||
|
localTime.ToString("s"));
|
||||||
|
#else
|
||||||
|
throw new NotSupportedException();
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Converts 12 digit address to XX:XX:XX... format
|
/// Converts 12 digit address to XX:XX:XX... format
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|||||||
Reference in New Issue
Block a user