mirror of
https://github.com/oliverbooth/VpSharp
synced 2024-11-10 03:15:42 +00:00
fix: match format specifier with parameterless ToString
This commit is contained in:
parent
6cca6e6072
commit
f6991eb697
@ -216,7 +216,7 @@ public readonly partial struct Coordinates : IEquatable<Coordinates>, IFormattab
|
|||||||
/// <returns>A <see cref="string" /> representation of these coordinates.</returns>
|
/// <returns>A <see cref="string" /> representation of these coordinates.</returns>
|
||||||
public string ToString(string? format, IFormatProvider? formatProvider = null)
|
public string ToString(string? format, IFormatProvider? formatProvider = null)
|
||||||
{
|
{
|
||||||
format ??= "0";
|
format ??= "F";
|
||||||
return Serializer.Serialize(this, format, formatProvider ?? CultureInfo.InvariantCulture);
|
return Serializer.Serialize(this, format, formatProvider ?? CultureInfo.InvariantCulture);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -207,7 +207,7 @@ public readonly struct Rotation : IEquatable<Rotation>, IFormattable
|
|||||||
/// <returns>A <see cref="string" /> representation of these coordinates.</returns>
|
/// <returns>A <see cref="string" /> representation of these coordinates.</returns>
|
||||||
public string ToString(string? format, IFormatProvider? formatProvider = null)
|
public string ToString(string? format, IFormatProvider? formatProvider = null)
|
||||||
{
|
{
|
||||||
format ??= "{0}";
|
format ??= "F";
|
||||||
string separator = NumberFormatInfo.GetInstance(formatProvider).NumberGroupSeparator;
|
string separator = NumberFormatInfo.GetInstance(formatProvider).NumberGroupSeparator;
|
||||||
|
|
||||||
using var builder = ZString.CreateUtf8StringBuilder();
|
using var builder = ZString.CreateUtf8StringBuilder();
|
||||||
|
Loading…
Reference in New Issue
Block a user