Added String.SetF

This commit is contained in:
Simon Lübeß
2025-06-26 17:50:04 +02:00
parent 50bcfa2caf
commit 05671649b4
@@ -23,5 +23,16 @@ namespace System
{
// TODO!
}
public void SetF(IFormatProvider formatProvider, StringView format, params Span<Object> args)
{
Clear();
AppendF(formatProvider, format, params args);
}
public void SetF(StringView format, params Span<Object> args)
{
SetF((IFormatProvider)null, format, params args);
}
}
}