FormattableString Class
Represents a composite format string, along with the arguments to be formatted.
Assembly: mscorlib (in mscorlib.dll)
| Name | Description | |
|---|---|---|
![]() | FormattableString() | Instantiates a new instance of the FormattableString class. |
| Name | Description | |
|---|---|---|
![]() | ArgumentCount | Gets the number of arguments to be formatted. |
![]() | Format | Returns the composite format string. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object^) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | Finalize() | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.(Inherited from Object.) |
![]() | GetArgument(Int32) | Returns the argument at the specified index position. |
![]() | GetArguments() | Returns an object array that contains one or more objects to format. |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() ![]() | Invariant(FormattableString^) | Returns a result string in which arguments are formatted by using the conventions of the invariant culture. |
![]() | MemberwiseClone() | |
![]() | ToString() | Returns the string that results from formatting the composite format string along with its arguments by using the formatting conventions of the current culture. (Overrides Object::ToString().) |
![]() | ToString(IFormatProvider^) | Returns the string that results from formatting the composite format string along with its arguments by using the formatting conventions of a specified culture. |
| Name | Description | |
|---|---|---|
![]() ![]() | IFormattable::ToString(String^, IFormatProvider^) | Returns the string that results from formatting the format string along with its arguments by using the formatting conventions of a specified culture. |
A composite format string consists of fixed text intermixed with indexed placeholders, called format items, that correspond to the objects in the list. The formatting operation yields a result string that consists of the original fixed text intermixed with the string representation of the objects in the list. Composite formatting is supported by methods such as String::Format, Console::WriteLine, and StringBuilder::AppendFormat. For more information on composite formatting, see Composite Formatting.
A FormattableString instance may result from the an interpolated string in C# or Visual Basic.
Available since 10
.NET Framework
Available since 4.6
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.





