using System;
using Cpp2IlInjected;
namespace System
{
/// Represents a composite format string, along with the arguments to be formatted.
// Token: 0x0200008A RID: 138
[Token(Token = "0x200008A")]
public abstract class FormattableString
{
/// Returns the composite format string.
/// The composite format string.
// Token: 0x17000081 RID: 129
// (get) Token: 0x0600044D RID: 1101
[Token(Token = "0x17000081")]
public abstract string Format
{
[Token(Token = "0x600044D")]
[Address(Slot = "4")]
get;
}
/// Returns an object array that contains one or more objects to format.
/// An object array that contains one or more objects to format.
// Token: 0x0600044E RID: 1102
[Token(Token = "0x600044E")]
[Address(Slot = "5")]
public abstract object[] GetArguments();
/// Gets the number of arguments to be formatted.
/// The number of arguments to be formatted.
// Token: 0x17000082 RID: 130
// (get) Token: 0x0600044F RID: 1103
[Token(Token = "0x17000082")]
public abstract int ArgumentCount
{
[Token(Token = "0x600044F")]
[Address(Slot = "6")]
get;
}
/// Returns the argument at the specified index position.
/// The index of the argument. Its value can range from zero to one less than the value of .
/// The argument.
// Token: 0x06000450 RID: 1104
[Token(Token = "0x6000450")]
[Address(Slot = "7")]
public abstract object GetArgument(int index);
}
}