Use file-scoped namespaces

This commit is contained in:
Oliver Booth 2022-04-20 18:51:20 +01:00
parent 37c7b74379
commit d4e3c8ab50
No known key found for this signature in database
GPG Key ID: 32A00B35503AF634
3 changed files with 137 additions and 140 deletions

View File

@ -1,7 +1,7 @@
using System.ComponentModel;
namespace X10D
{
namespace X10D;
/// <summary>
/// Represents an enumeration of endianness values.
/// </summary>
@ -19,4 +19,3 @@ namespace X10D
[Description("The value should be read as though it uses big endian encoding.")]
BigEndian
}
}

View File

@ -1,5 +1,5 @@
namespace X10D
{
namespace X10D;
/// <summary>
/// Provides static helpers methods for mathematical functions not found in the .NET <see cref="System.Math" /> class.
/// </summary>
@ -37,4 +37,3 @@
return ((1.0 - alpha) * value) + (alpha * target);
}
}
}

View File

@ -1,8 +1,8 @@
using System.Globalization;
using System.Text.RegularExpressions;
namespace X10D
{
namespace X10D;
/// <summary>
/// Represents a class which contains a <see cref="string" /> parser which converts into <see cref="TimeSpan" />.
/// </summary>
@ -100,4 +100,3 @@ namespace X10D
return true;
}
}
}