mirror of
https://github.com/oliverbooth/X10D
synced 2024-11-26 10:38:47 +00:00
Use file-scoped namespaces
This commit is contained in:
parent
37c7b74379
commit
d4e3c8ab50
@ -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
|
||||
}
|
||||
}
|
||||
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user