mirror of
https://github.com/oliverbooth/X10D
synced 2024-11-26 12:38:48 +00:00
Use file-scoped namespaces
This commit is contained in:
parent
37c7b74379
commit
d4e3c8ab50
@ -1,7 +1,7 @@
|
|||||||
using System.ComponentModel;
|
using System.ComponentModel;
|
||||||
|
|
||||||
namespace X10D
|
namespace X10D;
|
||||||
{
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Represents an enumeration of endianness values.
|
/// Represents an enumeration of endianness values.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@ -19,4 +19,3 @@ namespace X10D
|
|||||||
[Description("The value should be read as though it uses big endian encoding.")]
|
[Description("The value should be read as though it uses big endian encoding.")]
|
||||||
BigEndian
|
BigEndian
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
namespace X10D
|
namespace X10D;
|
||||||
{
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Provides static helpers methods for mathematical functions not found in the .NET <see cref="System.Math" /> class.
|
/// Provides static helpers methods for mathematical functions not found in the .NET <see cref="System.Math" /> class.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@ -37,4 +37,3 @@
|
|||||||
return ((1.0 - alpha) * value) + (alpha * target);
|
return ((1.0 - alpha) * value) + (alpha * target);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
using System.Globalization;
|
using System.Globalization;
|
||||||
using System.Text.RegularExpressions;
|
using System.Text.RegularExpressions;
|
||||||
|
|
||||||
namespace X10D
|
namespace X10D;
|
||||||
{
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Represents a class which contains a <see cref="string" /> parser which converts into <see cref="TimeSpan" />.
|
/// Represents a class which contains a <see cref="string" /> parser which converts into <see cref="TimeSpan" />.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@ -100,4 +100,3 @@ namespace X10D
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
Loading…
Reference in New Issue
Block a user