Class FixedString | Collections | 0.12.0-preview.13
docs.unity3d.com
    Show / Hide Table of Contents

    Class FixedString

    Inheritance
    Object
    FixedString
    Namespace: Unity.Collections
    Syntax
    public static class FixedString

    Methods

    Format(FixedString128, Int32)

    Convenience function to Format into a FixedString128, with arguments int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format(FixedString128 formatString, int arg0)
    Parameters
    Type Name Description
    FixedString128 formatString
    Int32 arg0
    Returns
    Type Description
    FixedString128

    Format(FixedString128, Int32, Int32)

    Convenience function to Format into a FixedString128, with arguments int, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format(FixedString128 formatString, int arg0, int arg1)
    Parameters
    Type Name Description
    FixedString128 formatString
    Int32 arg0
    Int32 arg1
    Returns
    Type Description
    FixedString128

    Format(FixedString128, Int32, Int32, Int32)

    Convenience function to Format into a FixedString128, with arguments int, int, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format(FixedString128 formatString, int arg0, int arg1, int arg2)
    Parameters
    Type Name Description
    FixedString128 formatString
    Int32 arg0
    Int32 arg1
    Int32 arg2
    Returns
    Type Description
    FixedString128

    Format(FixedString128, Int32, Int32, Single)

    Convenience function to Format into a FixedString128, with arguments int, int, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format(FixedString128 formatString, int arg0, int arg1, float arg2)
    Parameters
    Type Name Description
    FixedString128 formatString
    Int32 arg0
    Int32 arg1
    Single arg2
    Returns
    Type Description
    FixedString128

    Format(FixedString128, Int32, Int32, String)

    Convenience function to Format into a FixedString128, with arguments int, int, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format(FixedString128 formatString, int arg0, int arg1, string arg2)
    Parameters
    Type Name Description
    FixedString128 formatString
    Int32 arg0
    Int32 arg1
    String arg2
    Returns
    Type Description
    FixedString128

    Format(FixedString128, Int32, Single)

    Convenience function to Format into a FixedString128, with arguments int, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format(FixedString128 formatString, int arg0, float arg1)
    Parameters
    Type Name Description
    FixedString128 formatString
    Int32 arg0
    Single arg1
    Returns
    Type Description
    FixedString128

    Format(FixedString128, Int32, Single, Int32)

    Convenience function to Format into a FixedString128, with arguments int, float, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format(FixedString128 formatString, int arg0, float arg1, int arg2)
    Parameters
    Type Name Description
    FixedString128 formatString
    Int32 arg0
    Single arg1
    Int32 arg2
    Returns
    Type Description
    FixedString128

    Format(FixedString128, Int32, Single, Single)

    Convenience function to Format into a FixedString128, with arguments int, float, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format(FixedString128 formatString, int arg0, float arg1, float arg2)
    Parameters
    Type Name Description
    FixedString128 formatString
    Int32 arg0
    Single arg1
    Single arg2
    Returns
    Type Description
    FixedString128

    Format(FixedString128, Int32, Single, String)

    Convenience function to Format into a FixedString128, with arguments int, float, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format(FixedString128 formatString, int arg0, float arg1, string arg2)
    Parameters
    Type Name Description
    FixedString128 formatString
    Int32 arg0
    Single arg1
    String arg2
    Returns
    Type Description
    FixedString128

    Format(FixedString128, Int32, String)

    Convenience function to Format into a FixedString128, with arguments int, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format(FixedString128 formatString, int arg0, string arg1)
    Parameters
    Type Name Description
    FixedString128 formatString
    Int32 arg0
    String arg1
    Returns
    Type Description
    FixedString128

    Format(FixedString128, Int32, String, Int32)

    Convenience function to Format into a FixedString128, with arguments int, string, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format(FixedString128 formatString, int arg0, string arg1, int arg2)
    Parameters
    Type Name Description
    FixedString128 formatString
    Int32 arg0
    String arg1
    Int32 arg2
    Returns
    Type Description
    FixedString128

    Format(FixedString128, Int32, String, Single)

    Convenience function to Format into a FixedString128, with arguments int, string, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format(FixedString128 formatString, int arg0, string arg1, float arg2)
    Parameters
    Type Name Description
    FixedString128 formatString
    Int32 arg0
    String arg1
    Single arg2
    Returns
    Type Description
    FixedString128

    Format(FixedString128, Int32, String, String)

    Convenience function to Format into a FixedString128, with arguments int, string, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format(FixedString128 formatString, int arg0, string arg1, string arg2)
    Parameters
    Type Name Description
    FixedString128 formatString
    Int32 arg0
    String arg1
    String arg2
    Returns
    Type Description
    FixedString128

    Format(FixedString128, Single)

    Convenience function to Format into a FixedString128, with arguments float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format(FixedString128 formatString, float arg0)
    Parameters
    Type Name Description
    FixedString128 formatString
    Single arg0
    Returns
    Type Description
    FixedString128

    Format(FixedString128, Single, Int32)

    Convenience function to Format into a FixedString128, with arguments float, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format(FixedString128 formatString, float arg0, int arg1)
    Parameters
    Type Name Description
    FixedString128 formatString
    Single arg0
    Int32 arg1
    Returns
    Type Description
    FixedString128

    Format(FixedString128, Single, Int32, Int32)

    Convenience function to Format into a FixedString128, with arguments float, int, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format(FixedString128 formatString, float arg0, int arg1, int arg2)
    Parameters
    Type Name Description
    FixedString128 formatString
    Single arg0
    Int32 arg1
    Int32 arg2
    Returns
    Type Description
    FixedString128

    Format(FixedString128, Single, Int32, Single)

    Convenience function to Format into a FixedString128, with arguments float, int, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format(FixedString128 formatString, float arg0, int arg1, float arg2)
    Parameters
    Type Name Description
    FixedString128 formatString
    Single arg0
    Int32 arg1
    Single arg2
    Returns
    Type Description
    FixedString128

    Format(FixedString128, Single, Int32, String)

    Convenience function to Format into a FixedString128, with arguments float, int, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format(FixedString128 formatString, float arg0, int arg1, string arg2)
    Parameters
    Type Name Description
    FixedString128 formatString
    Single arg0
    Int32 arg1
    String arg2
    Returns
    Type Description
    FixedString128

    Format(FixedString128, Single, Single)

    Convenience function to Format into a FixedString128, with arguments float, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format(FixedString128 formatString, float arg0, float arg1)
    Parameters
    Type Name Description
    FixedString128 formatString
    Single arg0
    Single arg1
    Returns
    Type Description
    FixedString128

    Format(FixedString128, Single, Single, Int32)

    Convenience function to Format into a FixedString128, with arguments float, float, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format(FixedString128 formatString, float arg0, float arg1, int arg2)
    Parameters
    Type Name Description
    FixedString128 formatString
    Single arg0
    Single arg1
    Int32 arg2
    Returns
    Type Description
    FixedString128

    Format(FixedString128, Single, Single, Single)

    Convenience function to Format into a FixedString128, with arguments float, float, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format(FixedString128 formatString, float arg0, float arg1, float arg2)
    Parameters
    Type Name Description
    FixedString128 formatString
    Single arg0
    Single arg1
    Single arg2
    Returns
    Type Description
    FixedString128

    Format(FixedString128, Single, Single, String)

    Convenience function to Format into a FixedString128, with arguments float, float, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format(FixedString128 formatString, float arg0, float arg1, string arg2)
    Parameters
    Type Name Description
    FixedString128 formatString
    Single arg0
    Single arg1
    String arg2
    Returns
    Type Description
    FixedString128

    Format(FixedString128, Single, String)

    Convenience function to Format into a FixedString128, with arguments float, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format(FixedString128 formatString, float arg0, string arg1)
    Parameters
    Type Name Description
    FixedString128 formatString
    Single arg0
    String arg1
    Returns
    Type Description
    FixedString128

    Format(FixedString128, Single, String, Int32)

    Convenience function to Format into a FixedString128, with arguments float, string, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format(FixedString128 formatString, float arg0, string arg1, int arg2)
    Parameters
    Type Name Description
    FixedString128 formatString
    Single arg0
    String arg1
    Int32 arg2
    Returns
    Type Description
    FixedString128

    Format(FixedString128, Single, String, Single)

    Convenience function to Format into a FixedString128, with arguments float, string, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format(FixedString128 formatString, float arg0, string arg1, float arg2)
    Parameters
    Type Name Description
    FixedString128 formatString
    Single arg0
    String arg1
    Single arg2
    Returns
    Type Description
    FixedString128

    Format(FixedString128, Single, String, String)

    Convenience function to Format into a FixedString128, with arguments float, string, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format(FixedString128 formatString, float arg0, string arg1, string arg2)
    Parameters
    Type Name Description
    FixedString128 formatString
    Single arg0
    String arg1
    String arg2
    Returns
    Type Description
    FixedString128

    Format(FixedString128, String)

    Convenience function to Format into a FixedString128, with arguments string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format(FixedString128 formatString, string arg0)
    Parameters
    Type Name Description
    FixedString128 formatString
    String arg0
    Returns
    Type Description
    FixedString128

    Format(FixedString128, String, Int32)

    Convenience function to Format into a FixedString128, with arguments string, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format(FixedString128 formatString, string arg0, int arg1)
    Parameters
    Type Name Description
    FixedString128 formatString
    String arg0
    Int32 arg1
    Returns
    Type Description
    FixedString128

    Format(FixedString128, String, Int32, Int32)

    Convenience function to Format into a FixedString128, with arguments string, int, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format(FixedString128 formatString, string arg0, int arg1, int arg2)
    Parameters
    Type Name Description
    FixedString128 formatString
    String arg0
    Int32 arg1
    Int32 arg2
    Returns
    Type Description
    FixedString128

    Format(FixedString128, String, Int32, Single)

    Convenience function to Format into a FixedString128, with arguments string, int, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format(FixedString128 formatString, string arg0, int arg1, float arg2)
    Parameters
    Type Name Description
    FixedString128 formatString
    String arg0
    Int32 arg1
    Single arg2
    Returns
    Type Description
    FixedString128

    Format(FixedString128, String, Int32, String)

    Convenience function to Format into a FixedString128, with arguments string, int, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format(FixedString128 formatString, string arg0, int arg1, string arg2)
    Parameters
    Type Name Description
    FixedString128 formatString
    String arg0
    Int32 arg1
    String arg2
    Returns
    Type Description
    FixedString128

    Format(FixedString128, String, Single)

    Convenience function to Format into a FixedString128, with arguments string, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format(FixedString128 formatString, string arg0, float arg1)
    Parameters
    Type Name Description
    FixedString128 formatString
    String arg0
    Single arg1
    Returns
    Type Description
    FixedString128

    Format(FixedString128, String, Single, Int32)

    Convenience function to Format into a FixedString128, with arguments string, float, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format(FixedString128 formatString, string arg0, float arg1, int arg2)
    Parameters
    Type Name Description
    FixedString128 formatString
    String arg0
    Single arg1
    Int32 arg2
    Returns
    Type Description
    FixedString128

    Format(FixedString128, String, Single, Single)

    Convenience function to Format into a FixedString128, with arguments string, float, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format(FixedString128 formatString, string arg0, float arg1, float arg2)
    Parameters
    Type Name Description
    FixedString128 formatString
    String arg0
    Single arg1
    Single arg2
    Returns
    Type Description
    FixedString128

    Format(FixedString128, String, Single, String)

    Convenience function to Format into a FixedString128, with arguments string, float, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format(FixedString128 formatString, string arg0, float arg1, string arg2)
    Parameters
    Type Name Description
    FixedString128 formatString
    String arg0
    Single arg1
    String arg2
    Returns
    Type Description
    FixedString128

    Format(FixedString128, String, String)

    Convenience function to Format into a FixedString128, with arguments string, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format(FixedString128 formatString, string arg0, string arg1)
    Parameters
    Type Name Description
    FixedString128 formatString
    String arg0
    String arg1
    Returns
    Type Description
    FixedString128

    Format(FixedString128, String, String, Int32)

    Convenience function to Format into a FixedString128, with arguments string, string, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format(FixedString128 formatString, string arg0, string arg1, int arg2)
    Parameters
    Type Name Description
    FixedString128 formatString
    String arg0
    String arg1
    Int32 arg2
    Returns
    Type Description
    FixedString128

    Format(FixedString128, String, String, Single)

    Convenience function to Format into a FixedString128, with arguments string, string, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format(FixedString128 formatString, string arg0, string arg1, float arg2)
    Parameters
    Type Name Description
    FixedString128 formatString
    String arg0
    String arg1
    Single arg2
    Returns
    Type Description
    FixedString128

    Format(FixedString128, String, String, String)

    Convenience function to Format into a FixedString128, with arguments string, string, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format(FixedString128 formatString, string arg0, string arg1, string arg2)
    Parameters
    Type Name Description
    FixedString128 formatString
    String arg0
    String arg1
    String arg2
    Returns
    Type Description
    FixedString128

    Format(FixedString512, Int32, Int32, Int32, Int32)

    Convenience function to Format into a FixedString512, with arguments int, int, int, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, int arg0, int arg1, int arg2, int arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    Int32 arg1
    Int32 arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, Int32, Int32, Int32, Single)

    Convenience function to Format into a FixedString512, with arguments int, int, int, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, int arg0, int arg1, int arg2, float arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    Int32 arg1
    Int32 arg2
    Single arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, Int32, Int32, Int32, String)

    Convenience function to Format into a FixedString512, with arguments int, int, int, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, int arg0, int arg1, int arg2, string arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    Int32 arg1
    Int32 arg2
    String arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, Int32, Int32, Single, Int32)

    Convenience function to Format into a FixedString512, with arguments int, int, float, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, int arg0, int arg1, float arg2, int arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    Int32 arg1
    Single arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, Int32, Int32, Single, Single)

    Convenience function to Format into a FixedString512, with arguments int, int, float, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, int arg0, int arg1, float arg2, float arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    Int32 arg1
    Single arg2
    Single arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, Int32, Int32, Single, String)

    Convenience function to Format into a FixedString512, with arguments int, int, float, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, int arg0, int arg1, float arg2, string arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    Int32 arg1
    Single arg2
    String arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, Int32, Int32, String, Int32)

    Convenience function to Format into a FixedString512, with arguments int, int, string, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, int arg0, int arg1, string arg2, int arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    Int32 arg1
    String arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, Int32, Int32, String, Single)

    Convenience function to Format into a FixedString512, with arguments int, int, string, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, int arg0, int arg1, string arg2, float arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    Int32 arg1
    String arg2
    Single arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, Int32, Int32, String, String)

    Convenience function to Format into a FixedString512, with arguments int, int, string, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, int arg0, int arg1, string arg2, string arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    Int32 arg1
    String arg2
    String arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, Int32, Single, Int32, Int32)

    Convenience function to Format into a FixedString512, with arguments int, float, int, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, int arg0, float arg1, int arg2, int arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    Single arg1
    Int32 arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, Int32, Single, Int32, Single)

    Convenience function to Format into a FixedString512, with arguments int, float, int, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, int arg0, float arg1, int arg2, float arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    Single arg1
    Int32 arg2
    Single arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, Int32, Single, Int32, String)

    Convenience function to Format into a FixedString512, with arguments int, float, int, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, int arg0, float arg1, int arg2, string arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    Single arg1
    Int32 arg2
    String arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, Int32, Single, Single, Int32)

    Convenience function to Format into a FixedString512, with arguments int, float, float, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, int arg0, float arg1, float arg2, int arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    Single arg1
    Single arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, Int32, Single, Single, Single)

    Convenience function to Format into a FixedString512, with arguments int, float, float, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, int arg0, float arg1, float arg2, float arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    Single arg1
    Single arg2
    Single arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, Int32, Single, Single, String)

    Convenience function to Format into a FixedString512, with arguments int, float, float, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, int arg0, float arg1, float arg2, string arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    Single arg1
    Single arg2
    String arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, Int32, Single, String, Int32)

    Convenience function to Format into a FixedString512, with arguments int, float, string, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, int arg0, float arg1, string arg2, int arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    Single arg1
    String arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, Int32, Single, String, Single)

    Convenience function to Format into a FixedString512, with arguments int, float, string, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, int arg0, float arg1, string arg2, float arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    Single arg1
    String arg2
    Single arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, Int32, Single, String, String)

    Convenience function to Format into a FixedString512, with arguments int, float, string, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, int arg0, float arg1, string arg2, string arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    Single arg1
    String arg2
    String arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, Int32, String, Int32, Int32)

    Convenience function to Format into a FixedString512, with arguments int, string, int, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, int arg0, string arg1, int arg2, int arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    String arg1
    Int32 arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, Int32, String, Int32, Single)

    Convenience function to Format into a FixedString512, with arguments int, string, int, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, int arg0, string arg1, int arg2, float arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    String arg1
    Int32 arg2
    Single arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, Int32, String, Int32, String)

    Convenience function to Format into a FixedString512, with arguments int, string, int, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, int arg0, string arg1, int arg2, string arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    String arg1
    Int32 arg2
    String arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, Int32, String, Single, Int32)

    Convenience function to Format into a FixedString512, with arguments int, string, float, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, int arg0, string arg1, float arg2, int arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    String arg1
    Single arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, Int32, String, Single, Single)

    Convenience function to Format into a FixedString512, with arguments int, string, float, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, int arg0, string arg1, float arg2, float arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    String arg1
    Single arg2
    Single arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, Int32, String, Single, String)

    Convenience function to Format into a FixedString512, with arguments int, string, float, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, int arg0, string arg1, float arg2, string arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    String arg1
    Single arg2
    String arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, Int32, String, String, Int32)

    Convenience function to Format into a FixedString512, with arguments int, string, string, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, int arg0, string arg1, string arg2, int arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    String arg1
    String arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, Int32, String, String, Single)

    Convenience function to Format into a FixedString512, with arguments int, string, string, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, int arg0, string arg1, string arg2, float arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    String arg1
    String arg2
    Single arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, Int32, String, String, String)

    Convenience function to Format into a FixedString512, with arguments int, string, string, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, int arg0, string arg1, string arg2, string arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    String arg1
    String arg2
    String arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, Single, Int32, Int32, Int32)

    Convenience function to Format into a FixedString512, with arguments float, int, int, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, float arg0, int arg1, int arg2, int arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    Int32 arg1
    Int32 arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, Single, Int32, Int32, Single)

    Convenience function to Format into a FixedString512, with arguments float, int, int, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, float arg0, int arg1, int arg2, float arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    Int32 arg1
    Int32 arg2
    Single arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, Single, Int32, Int32, String)

    Convenience function to Format into a FixedString512, with arguments float, int, int, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, float arg0, int arg1, int arg2, string arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    Int32 arg1
    Int32 arg2
    String arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, Single, Int32, Single, Int32)

    Convenience function to Format into a FixedString512, with arguments float, int, float, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, float arg0, int arg1, float arg2, int arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    Int32 arg1
    Single arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, Single, Int32, Single, Single)

    Convenience function to Format into a FixedString512, with arguments float, int, float, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, float arg0, int arg1, float arg2, float arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    Int32 arg1
    Single arg2
    Single arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, Single, Int32, Single, String)

    Convenience function to Format into a FixedString512, with arguments float, int, float, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, float arg0, int arg1, float arg2, string arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    Int32 arg1
    Single arg2
    String arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, Single, Int32, String, Int32)

    Convenience function to Format into a FixedString512, with arguments float, int, string, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, float arg0, int arg1, string arg2, int arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    Int32 arg1
    String arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, Single, Int32, String, Single)

    Convenience function to Format into a FixedString512, with arguments float, int, string, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, float arg0, int arg1, string arg2, float arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    Int32 arg1
    String arg2
    Single arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, Single, Int32, String, String)

    Convenience function to Format into a FixedString512, with arguments float, int, string, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, float arg0, int arg1, string arg2, string arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    Int32 arg1
    String arg2
    String arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, Single, Single, Int32, Int32)

    Convenience function to Format into a FixedString512, with arguments float, float, int, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, float arg0, float arg1, int arg2, int arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    Single arg1
    Int32 arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, Single, Single, Int32, Single)

    Convenience function to Format into a FixedString512, with arguments float, float, int, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, float arg0, float arg1, int arg2, float arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    Single arg1
    Int32 arg2
    Single arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, Single, Single, Int32, String)

    Convenience function to Format into a FixedString512, with arguments float, float, int, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, float arg0, float arg1, int arg2, string arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    Single arg1
    Int32 arg2
    String arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, Single, Single, Single, Int32)

    Convenience function to Format into a FixedString512, with arguments float, float, float, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, float arg0, float arg1, float arg2, int arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    Single arg1
    Single arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, Single, Single, Single, Single)

    Convenience function to Format into a FixedString512, with arguments float, float, float, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, float arg0, float arg1, float arg2, float arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    Single arg1
    Single arg2
    Single arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, Single, Single, Single, String)

    Convenience function to Format into a FixedString512, with arguments float, float, float, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, float arg0, float arg1, float arg2, string arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    Single arg1
    Single arg2
    String arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, Single, Single, String, Int32)

    Convenience function to Format into a FixedString512, with arguments float, float, string, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, float arg0, float arg1, string arg2, int arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    Single arg1
    String arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, Single, Single, String, Single)

    Convenience function to Format into a FixedString512, with arguments float, float, string, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, float arg0, float arg1, string arg2, float arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    Single arg1
    String arg2
    Single arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, Single, Single, String, String)

    Convenience function to Format into a FixedString512, with arguments float, float, string, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, float arg0, float arg1, string arg2, string arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    Single arg1
    String arg2
    String arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, Single, String, Int32, Int32)

    Convenience function to Format into a FixedString512, with arguments float, string, int, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, float arg0, string arg1, int arg2, int arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    String arg1
    Int32 arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, Single, String, Int32, Single)

    Convenience function to Format into a FixedString512, with arguments float, string, int, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, float arg0, string arg1, int arg2, float arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    String arg1
    Int32 arg2
    Single arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, Single, String, Int32, String)

    Convenience function to Format into a FixedString512, with arguments float, string, int, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, float arg0, string arg1, int arg2, string arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    String arg1
    Int32 arg2
    String arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, Single, String, Single, Int32)

    Convenience function to Format into a FixedString512, with arguments float, string, float, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, float arg0, string arg1, float arg2, int arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    String arg1
    Single arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, Single, String, Single, Single)

    Convenience function to Format into a FixedString512, with arguments float, string, float, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, float arg0, string arg1, float arg2, float arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    String arg1
    Single arg2
    Single arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, Single, String, Single, String)

    Convenience function to Format into a FixedString512, with arguments float, string, float, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, float arg0, string arg1, float arg2, string arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    String arg1
    Single arg2
    String arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, Single, String, String, Int32)

    Convenience function to Format into a FixedString512, with arguments float, string, string, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, float arg0, string arg1, string arg2, int arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    String arg1
    String arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, Single, String, String, Single)

    Convenience function to Format into a FixedString512, with arguments float, string, string, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, float arg0, string arg1, string arg2, float arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    String arg1
    String arg2
    Single arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, Single, String, String, String)

    Convenience function to Format into a FixedString512, with arguments float, string, string, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, float arg0, string arg1, string arg2, string arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    String arg1
    String arg2
    String arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, String, Int32, Int32, Int32)

    Convenience function to Format into a FixedString512, with arguments string, int, int, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, string arg0, int arg1, int arg2, int arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    Int32 arg1
    Int32 arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, String, Int32, Int32, Single)

    Convenience function to Format into a FixedString512, with arguments string, int, int, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, string arg0, int arg1, int arg2, float arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    Int32 arg1
    Int32 arg2
    Single arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, String, Int32, Int32, String)

    Convenience function to Format into a FixedString512, with arguments string, int, int, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, string arg0, int arg1, int arg2, string arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    Int32 arg1
    Int32 arg2
    String arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, String, Int32, Single, Int32)

    Convenience function to Format into a FixedString512, with arguments string, int, float, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, string arg0, int arg1, float arg2, int arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    Int32 arg1
    Single arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, String, Int32, Single, Single)

    Convenience function to Format into a FixedString512, with arguments string, int, float, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, string arg0, int arg1, float arg2, float arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    Int32 arg1
    Single arg2
    Single arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, String, Int32, Single, String)

    Convenience function to Format into a FixedString512, with arguments string, int, float, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, string arg0, int arg1, float arg2, string arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    Int32 arg1
    Single arg2
    String arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, String, Int32, String, Int32)

    Convenience function to Format into a FixedString512, with arguments string, int, string, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, string arg0, int arg1, string arg2, int arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    Int32 arg1
    String arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, String, Int32, String, Single)

    Convenience function to Format into a FixedString512, with arguments string, int, string, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, string arg0, int arg1, string arg2, float arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    Int32 arg1
    String arg2
    Single arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, String, Int32, String, String)

    Convenience function to Format into a FixedString512, with arguments string, int, string, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, string arg0, int arg1, string arg2, string arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    Int32 arg1
    String arg2
    String arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, String, Single, Int32, Int32)

    Convenience function to Format into a FixedString512, with arguments string, float, int, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, string arg0, float arg1, int arg2, int arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    Single arg1
    Int32 arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, String, Single, Int32, Single)

    Convenience function to Format into a FixedString512, with arguments string, float, int, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, string arg0, float arg1, int arg2, float arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    Single arg1
    Int32 arg2
    Single arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, String, Single, Int32, String)

    Convenience function to Format into a FixedString512, with arguments string, float, int, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, string arg0, float arg1, int arg2, string arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    Single arg1
    Int32 arg2
    String arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, String, Single, Single, Int32)

    Convenience function to Format into a FixedString512, with arguments string, float, float, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, string arg0, float arg1, float arg2, int arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    Single arg1
    Single arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, String, Single, Single, Single)

    Convenience function to Format into a FixedString512, with arguments string, float, float, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, string arg0, float arg1, float arg2, float arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    Single arg1
    Single arg2
    Single arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, String, Single, Single, String)

    Convenience function to Format into a FixedString512, with arguments string, float, float, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, string arg0, float arg1, float arg2, string arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    Single arg1
    Single arg2
    String arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, String, Single, String, Int32)

    Convenience function to Format into a FixedString512, with arguments string, float, string, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, string arg0, float arg1, string arg2, int arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    Single arg1
    String arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, String, Single, String, Single)

    Convenience function to Format into a FixedString512, with arguments string, float, string, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, string arg0, float arg1, string arg2, float arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    Single arg1
    String arg2
    Single arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, String, Single, String, String)

    Convenience function to Format into a FixedString512, with arguments string, float, string, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, string arg0, float arg1, string arg2, string arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    Single arg1
    String arg2
    String arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, String, String, Int32, Int32)

    Convenience function to Format into a FixedString512, with arguments string, string, int, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, string arg0, string arg1, int arg2, int arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    String arg1
    Int32 arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, String, String, Int32, Single)

    Convenience function to Format into a FixedString512, with arguments string, string, int, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, string arg0, string arg1, int arg2, float arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    String arg1
    Int32 arg2
    Single arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, String, String, Int32, String)

    Convenience function to Format into a FixedString512, with arguments string, string, int, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, string arg0, string arg1, int arg2, string arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    String arg1
    Int32 arg2
    String arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, String, String, Single, Int32)

    Convenience function to Format into a FixedString512, with arguments string, string, float, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, string arg0, string arg1, float arg2, int arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    String arg1
    Single arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, String, String, Single, Single)

    Convenience function to Format into a FixedString512, with arguments string, string, float, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, string arg0, string arg1, float arg2, float arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    String arg1
    Single arg2
    Single arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, String, String, Single, String)

    Convenience function to Format into a FixedString512, with arguments string, string, float, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, string arg0, string arg1, float arg2, string arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    String arg1
    Single arg2
    String arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, String, String, String, Int32)

    Convenience function to Format into a FixedString512, with arguments string, string, string, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, string arg0, string arg1, string arg2, int arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    String arg1
    String arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, String, String, String, Single)

    Convenience function to Format into a FixedString512, with arguments string, string, string, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, string arg0, string arg1, string arg2, float arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    String arg1
    String arg2
    Single arg3
    Returns
    Type Description
    FixedString512

    Format(FixedString512, String, String, String, String)

    Convenience function to Format into a FixedString512, with arguments string, string, string, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format(FixedString512 formatString, string arg0, string arg1, string arg2, string arg3)
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    String arg1
    String arg2
    String arg3
    Returns
    Type Description
    FixedString512

    Format<T1>(FixedString128, T1)

    Convenience function to Format into a FixedString128, with arguments T1.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format<T1>(FixedString128 formatString, T1 arg0)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString128 formatString
    T1 arg0
    Returns
    Type Description
    FixedString128
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString128, T1, Int32)

    Convenience function to Format into a FixedString128, with arguments T1, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format<T1>(FixedString128 formatString, T1 arg0, int arg1)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString128 formatString
    T1 arg0
    Int32 arg1
    Returns
    Type Description
    FixedString128
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString128, T1, Int32, Int32)

    Convenience function to Format into a FixedString128, with arguments T1, int, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format<T1>(FixedString128 formatString, T1 arg0, int arg1, int arg2)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString128 formatString
    T1 arg0
    Int32 arg1
    Int32 arg2
    Returns
    Type Description
    FixedString128
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString128, T1, Int32, Single)

    Convenience function to Format into a FixedString128, with arguments T1, int, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format<T1>(FixedString128 formatString, T1 arg0, int arg1, float arg2)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString128 formatString
    T1 arg0
    Int32 arg1
    Single arg2
    Returns
    Type Description
    FixedString128
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString128, T1, Int32, String)

    Convenience function to Format into a FixedString128, with arguments T1, int, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format<T1>(FixedString128 formatString, T1 arg0, int arg1, string arg2)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString128 formatString
    T1 arg0
    Int32 arg1
    String arg2
    Returns
    Type Description
    FixedString128
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString128, T1, Single)

    Convenience function to Format into a FixedString128, with arguments T1, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format<T1>(FixedString128 formatString, T1 arg0, float arg1)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString128 formatString
    T1 arg0
    Single arg1
    Returns
    Type Description
    FixedString128
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString128, T1, Single, Int32)

    Convenience function to Format into a FixedString128, with arguments T1, float, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format<T1>(FixedString128 formatString, T1 arg0, float arg1, int arg2)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString128 formatString
    T1 arg0
    Single arg1
    Int32 arg2
    Returns
    Type Description
    FixedString128
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString128, T1, Single, Single)

    Convenience function to Format into a FixedString128, with arguments T1, float, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format<T1>(FixedString128 formatString, T1 arg0, float arg1, float arg2)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString128 formatString
    T1 arg0
    Single arg1
    Single arg2
    Returns
    Type Description
    FixedString128
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString128, T1, Single, String)

    Convenience function to Format into a FixedString128, with arguments T1, float, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format<T1>(FixedString128 formatString, T1 arg0, float arg1, string arg2)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString128 formatString
    T1 arg0
    Single arg1
    String arg2
    Returns
    Type Description
    FixedString128
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString128, T1, String)

    Convenience function to Format into a FixedString128, with arguments T1, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format<T1>(FixedString128 formatString, T1 arg0, string arg1)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString128 formatString
    T1 arg0
    String arg1
    Returns
    Type Description
    FixedString128
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString128, T1, String, Int32)

    Convenience function to Format into a FixedString128, with arguments T1, string, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format<T1>(FixedString128 formatString, T1 arg0, string arg1, int arg2)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString128 formatString
    T1 arg0
    String arg1
    Int32 arg2
    Returns
    Type Description
    FixedString128
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString128, T1, String, Single)

    Convenience function to Format into a FixedString128, with arguments T1, string, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format<T1>(FixedString128 formatString, T1 arg0, string arg1, float arg2)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString128 formatString
    T1 arg0
    String arg1
    Single arg2
    Returns
    Type Description
    FixedString128
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString128, T1, String, String)

    Convenience function to Format into a FixedString128, with arguments T1, string, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format<T1>(FixedString128 formatString, T1 arg0, string arg1, string arg2)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString128 formatString
    T1 arg0
    String arg1
    String arg2
    Returns
    Type Description
    FixedString128
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString128, Int32, T1)

    Convenience function to Format into a FixedString128, with arguments int, T1.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format<T1>(FixedString128 formatString, int arg0, T1 arg1)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString128 formatString
    Int32 arg0
    T1 arg1
    Returns
    Type Description
    FixedString128
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString128, Int32, T1, Int32)

    Convenience function to Format into a FixedString128, with arguments int, T1, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format<T1>(FixedString128 formatString, int arg0, T1 arg1, int arg2)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString128 formatString
    Int32 arg0
    T1 arg1
    Int32 arg2
    Returns
    Type Description
    FixedString128
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString128, Int32, T1, Single)

    Convenience function to Format into a FixedString128, with arguments int, T1, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format<T1>(FixedString128 formatString, int arg0, T1 arg1, float arg2)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString128 formatString
    Int32 arg0
    T1 arg1
    Single arg2
    Returns
    Type Description
    FixedString128
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString128, Int32, T1, String)

    Convenience function to Format into a FixedString128, with arguments int, T1, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format<T1>(FixedString128 formatString, int arg0, T1 arg1, string arg2)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString128 formatString
    Int32 arg0
    T1 arg1
    String arg2
    Returns
    Type Description
    FixedString128
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString128, Int32, Int32, T1)

    Convenience function to Format into a FixedString128, with arguments int, int, T1.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format<T1>(FixedString128 formatString, int arg0, int arg1, T1 arg2)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString128 formatString
    Int32 arg0
    Int32 arg1
    T1 arg2
    Returns
    Type Description
    FixedString128
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString128, Int32, Single, T1)

    Convenience function to Format into a FixedString128, with arguments int, float, T1.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format<T1>(FixedString128 formatString, int arg0, float arg1, T1 arg2)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString128 formatString
    Int32 arg0
    Single arg1
    T1 arg2
    Returns
    Type Description
    FixedString128
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString128, Int32, String, T1)

    Convenience function to Format into a FixedString128, with arguments int, string, T1.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format<T1>(FixedString128 formatString, int arg0, string arg1, T1 arg2)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString128 formatString
    Int32 arg0
    String arg1
    T1 arg2
    Returns
    Type Description
    FixedString128
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString128, Single, T1)

    Convenience function to Format into a FixedString128, with arguments float, T1.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format<T1>(FixedString128 formatString, float arg0, T1 arg1)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString128 formatString
    Single arg0
    T1 arg1
    Returns
    Type Description
    FixedString128
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString128, Single, T1, Int32)

    Convenience function to Format into a FixedString128, with arguments float, T1, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format<T1>(FixedString128 formatString, float arg0, T1 arg1, int arg2)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString128 formatString
    Single arg0
    T1 arg1
    Int32 arg2
    Returns
    Type Description
    FixedString128
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString128, Single, T1, Single)

    Convenience function to Format into a FixedString128, with arguments float, T1, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format<T1>(FixedString128 formatString, float arg0, T1 arg1, float arg2)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString128 formatString
    Single arg0
    T1 arg1
    Single arg2
    Returns
    Type Description
    FixedString128
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString128, Single, T1, String)

    Convenience function to Format into a FixedString128, with arguments float, T1, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format<T1>(FixedString128 formatString, float arg0, T1 arg1, string arg2)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString128 formatString
    Single arg0
    T1 arg1
    String arg2
    Returns
    Type Description
    FixedString128
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString128, Single, Int32, T1)

    Convenience function to Format into a FixedString128, with arguments float, int, T1.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format<T1>(FixedString128 formatString, float arg0, int arg1, T1 arg2)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString128 formatString
    Single arg0
    Int32 arg1
    T1 arg2
    Returns
    Type Description
    FixedString128
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString128, Single, Single, T1)

    Convenience function to Format into a FixedString128, with arguments float, float, T1.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format<T1>(FixedString128 formatString, float arg0, float arg1, T1 arg2)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString128 formatString
    Single arg0
    Single arg1
    T1 arg2
    Returns
    Type Description
    FixedString128
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString128, Single, String, T1)

    Convenience function to Format into a FixedString128, with arguments float, string, T1.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format<T1>(FixedString128 formatString, float arg0, string arg1, T1 arg2)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString128 formatString
    Single arg0
    String arg1
    T1 arg2
    Returns
    Type Description
    FixedString128
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString128, String, T1)

    Convenience function to Format into a FixedString128, with arguments string, T1.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format<T1>(FixedString128 formatString, string arg0, T1 arg1)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString128 formatString
    String arg0
    T1 arg1
    Returns
    Type Description
    FixedString128
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString128, String, T1, Int32)

    Convenience function to Format into a FixedString128, with arguments string, T1, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format<T1>(FixedString128 formatString, string arg0, T1 arg1, int arg2)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString128 formatString
    String arg0
    T1 arg1
    Int32 arg2
    Returns
    Type Description
    FixedString128
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString128, String, T1, Single)

    Convenience function to Format into a FixedString128, with arguments string, T1, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format<T1>(FixedString128 formatString, string arg0, T1 arg1, float arg2)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString128 formatString
    String arg0
    T1 arg1
    Single arg2
    Returns
    Type Description
    FixedString128
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString128, String, T1, String)

    Convenience function to Format into a FixedString128, with arguments string, T1, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format<T1>(FixedString128 formatString, string arg0, T1 arg1, string arg2)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString128 formatString
    String arg0
    T1 arg1
    String arg2
    Returns
    Type Description
    FixedString128
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString128, String, Int32, T1)

    Convenience function to Format into a FixedString128, with arguments string, int, T1.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format<T1>(FixedString128 formatString, string arg0, int arg1, T1 arg2)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString128 formatString
    String arg0
    Int32 arg1
    T1 arg2
    Returns
    Type Description
    FixedString128
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString128, String, Single, T1)

    Convenience function to Format into a FixedString128, with arguments string, float, T1.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format<T1>(FixedString128 formatString, string arg0, float arg1, T1 arg2)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString128 formatString
    String arg0
    Single arg1
    T1 arg2
    Returns
    Type Description
    FixedString128
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString128, String, String, T1)

    Convenience function to Format into a FixedString128, with arguments string, string, T1.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format<T1>(FixedString128 formatString, string arg0, string arg1, T1 arg2)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString128 formatString
    String arg0
    String arg1
    T1 arg2
    Returns
    Type Description
    FixedString128
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, T1, Int32, Int32, Int32)

    Convenience function to Format into a FixedString512, with arguments T1, int, int, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, T1 arg0, int arg1, int arg2, int arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    Int32 arg1
    Int32 arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, T1, Int32, Int32, Single)

    Convenience function to Format into a FixedString512, with arguments T1, int, int, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, T1 arg0, int arg1, int arg2, float arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    Int32 arg1
    Int32 arg2
    Single arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, T1, Int32, Int32, String)

    Convenience function to Format into a FixedString512, with arguments T1, int, int, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, T1 arg0, int arg1, int arg2, string arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    Int32 arg1
    Int32 arg2
    String arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, T1, Int32, Single, Int32)

    Convenience function to Format into a FixedString512, with arguments T1, int, float, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, T1 arg0, int arg1, float arg2, int arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    Int32 arg1
    Single arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, T1, Int32, Single, Single)

    Convenience function to Format into a FixedString512, with arguments T1, int, float, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, T1 arg0, int arg1, float arg2, float arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    Int32 arg1
    Single arg2
    Single arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, T1, Int32, Single, String)

    Convenience function to Format into a FixedString512, with arguments T1, int, float, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, T1 arg0, int arg1, float arg2, string arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    Int32 arg1
    Single arg2
    String arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, T1, Int32, String, Int32)

    Convenience function to Format into a FixedString512, with arguments T1, int, string, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, T1 arg0, int arg1, string arg2, int arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    Int32 arg1
    String arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, T1, Int32, String, Single)

    Convenience function to Format into a FixedString512, with arguments T1, int, string, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, T1 arg0, int arg1, string arg2, float arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    Int32 arg1
    String arg2
    Single arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, T1, Int32, String, String)

    Convenience function to Format into a FixedString512, with arguments T1, int, string, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, T1 arg0, int arg1, string arg2, string arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    Int32 arg1
    String arg2
    String arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, T1, Single, Int32, Int32)

    Convenience function to Format into a FixedString512, with arguments T1, float, int, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, T1 arg0, float arg1, int arg2, int arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    Single arg1
    Int32 arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, T1, Single, Int32, Single)

    Convenience function to Format into a FixedString512, with arguments T1, float, int, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, T1 arg0, float arg1, int arg2, float arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    Single arg1
    Int32 arg2
    Single arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, T1, Single, Int32, String)

    Convenience function to Format into a FixedString512, with arguments T1, float, int, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, T1 arg0, float arg1, int arg2, string arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    Single arg1
    Int32 arg2
    String arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, T1, Single, Single, Int32)

    Convenience function to Format into a FixedString512, with arguments T1, float, float, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, T1 arg0, float arg1, float arg2, int arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    Single arg1
    Single arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, T1, Single, Single, Single)

    Convenience function to Format into a FixedString512, with arguments T1, float, float, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, T1 arg0, float arg1, float arg2, float arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    Single arg1
    Single arg2
    Single arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, T1, Single, Single, String)

    Convenience function to Format into a FixedString512, with arguments T1, float, float, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, T1 arg0, float arg1, float arg2, string arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    Single arg1
    Single arg2
    String arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, T1, Single, String, Int32)

    Convenience function to Format into a FixedString512, with arguments T1, float, string, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, T1 arg0, float arg1, string arg2, int arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    Single arg1
    String arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, T1, Single, String, Single)

    Convenience function to Format into a FixedString512, with arguments T1, float, string, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, T1 arg0, float arg1, string arg2, float arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    Single arg1
    String arg2
    Single arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, T1, Single, String, String)

    Convenience function to Format into a FixedString512, with arguments T1, float, string, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, T1 arg0, float arg1, string arg2, string arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    Single arg1
    String arg2
    String arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, T1, String, Int32, Int32)

    Convenience function to Format into a FixedString512, with arguments T1, string, int, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, T1 arg0, string arg1, int arg2, int arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    String arg1
    Int32 arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, T1, String, Int32, Single)

    Convenience function to Format into a FixedString512, with arguments T1, string, int, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, T1 arg0, string arg1, int arg2, float arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    String arg1
    Int32 arg2
    Single arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, T1, String, Int32, String)

    Convenience function to Format into a FixedString512, with arguments T1, string, int, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, T1 arg0, string arg1, int arg2, string arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    String arg1
    Int32 arg2
    String arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, T1, String, Single, Int32)

    Convenience function to Format into a FixedString512, with arguments T1, string, float, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, T1 arg0, string arg1, float arg2, int arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    String arg1
    Single arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, T1, String, Single, Single)

    Convenience function to Format into a FixedString512, with arguments T1, string, float, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, T1 arg0, string arg1, float arg2, float arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    String arg1
    Single arg2
    Single arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, T1, String, Single, String)

    Convenience function to Format into a FixedString512, with arguments T1, string, float, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, T1 arg0, string arg1, float arg2, string arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    String arg1
    Single arg2
    String arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, T1, String, String, Int32)

    Convenience function to Format into a FixedString512, with arguments T1, string, string, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, T1 arg0, string arg1, string arg2, int arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    String arg1
    String arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, T1, String, String, Single)

    Convenience function to Format into a FixedString512, with arguments T1, string, string, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, T1 arg0, string arg1, string arg2, float arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    String arg1
    String arg2
    Single arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, T1, String, String, String)

    Convenience function to Format into a FixedString512, with arguments T1, string, string, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, T1 arg0, string arg1, string arg2, string arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    String arg1
    String arg2
    String arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, Int32, T1, Int32, Int32)

    Convenience function to Format into a FixedString512, with arguments int, T1, int, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, int arg0, T1 arg1, int arg2, int arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    T1 arg1
    Int32 arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, Int32, T1, Int32, Single)

    Convenience function to Format into a FixedString512, with arguments int, T1, int, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, int arg0, T1 arg1, int arg2, float arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    T1 arg1
    Int32 arg2
    Single arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, Int32, T1, Int32, String)

    Convenience function to Format into a FixedString512, with arguments int, T1, int, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, int arg0, T1 arg1, int arg2, string arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    T1 arg1
    Int32 arg2
    String arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, Int32, T1, Single, Int32)

    Convenience function to Format into a FixedString512, with arguments int, T1, float, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, int arg0, T1 arg1, float arg2, int arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    T1 arg1
    Single arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, Int32, T1, Single, Single)

    Convenience function to Format into a FixedString512, with arguments int, T1, float, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, int arg0, T1 arg1, float arg2, float arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    T1 arg1
    Single arg2
    Single arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, Int32, T1, Single, String)

    Convenience function to Format into a FixedString512, with arguments int, T1, float, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, int arg0, T1 arg1, float arg2, string arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    T1 arg1
    Single arg2
    String arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, Int32, T1, String, Int32)

    Convenience function to Format into a FixedString512, with arguments int, T1, string, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, int arg0, T1 arg1, string arg2, int arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    T1 arg1
    String arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, Int32, T1, String, Single)

    Convenience function to Format into a FixedString512, with arguments int, T1, string, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, int arg0, T1 arg1, string arg2, float arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    T1 arg1
    String arg2
    Single arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, Int32, T1, String, String)

    Convenience function to Format into a FixedString512, with arguments int, T1, string, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, int arg0, T1 arg1, string arg2, string arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    T1 arg1
    String arg2
    String arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, Int32, Int32, T1, Int32)

    Convenience function to Format into a FixedString512, with arguments int, int, T1, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, int arg0, int arg1, T1 arg2, int arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    Int32 arg1
    T1 arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, Int32, Int32, T1, Single)

    Convenience function to Format into a FixedString512, with arguments int, int, T1, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, int arg0, int arg1, T1 arg2, float arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    Int32 arg1
    T1 arg2
    Single arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, Int32, Int32, T1, String)

    Convenience function to Format into a FixedString512, with arguments int, int, T1, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, int arg0, int arg1, T1 arg2, string arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    Int32 arg1
    T1 arg2
    String arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, Int32, Int32, Int32, T1)

    Convenience function to Format into a FixedString512, with arguments int, int, int, T1.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, int arg0, int arg1, int arg2, T1 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    Int32 arg1
    Int32 arg2
    T1 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, Int32, Int32, Single, T1)

    Convenience function to Format into a FixedString512, with arguments int, int, float, T1.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, int arg0, int arg1, float arg2, T1 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    Int32 arg1
    Single arg2
    T1 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, Int32, Int32, String, T1)

    Convenience function to Format into a FixedString512, with arguments int, int, string, T1.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, int arg0, int arg1, string arg2, T1 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    Int32 arg1
    String arg2
    T1 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, Int32, Single, T1, Int32)

    Convenience function to Format into a FixedString512, with arguments int, float, T1, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, int arg0, float arg1, T1 arg2, int arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    Single arg1
    T1 arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, Int32, Single, T1, Single)

    Convenience function to Format into a FixedString512, with arguments int, float, T1, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, int arg0, float arg1, T1 arg2, float arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    Single arg1
    T1 arg2
    Single arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, Int32, Single, T1, String)

    Convenience function to Format into a FixedString512, with arguments int, float, T1, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, int arg0, float arg1, T1 arg2, string arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    Single arg1
    T1 arg2
    String arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, Int32, Single, Int32, T1)

    Convenience function to Format into a FixedString512, with arguments int, float, int, T1.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, int arg0, float arg1, int arg2, T1 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    Single arg1
    Int32 arg2
    T1 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, Int32, Single, Single, T1)

    Convenience function to Format into a FixedString512, with arguments int, float, float, T1.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, int arg0, float arg1, float arg2, T1 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    Single arg1
    Single arg2
    T1 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, Int32, Single, String, T1)

    Convenience function to Format into a FixedString512, with arguments int, float, string, T1.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, int arg0, float arg1, string arg2, T1 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    Single arg1
    String arg2
    T1 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, Int32, String, T1, Int32)

    Convenience function to Format into a FixedString512, with arguments int, string, T1, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, int arg0, string arg1, T1 arg2, int arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    String arg1
    T1 arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, Int32, String, T1, Single)

    Convenience function to Format into a FixedString512, with arguments int, string, T1, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, int arg0, string arg1, T1 arg2, float arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    String arg1
    T1 arg2
    Single arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, Int32, String, T1, String)

    Convenience function to Format into a FixedString512, with arguments int, string, T1, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, int arg0, string arg1, T1 arg2, string arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    String arg1
    T1 arg2
    String arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, Int32, String, Int32, T1)

    Convenience function to Format into a FixedString512, with arguments int, string, int, T1.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, int arg0, string arg1, int arg2, T1 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    String arg1
    Int32 arg2
    T1 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, Int32, String, Single, T1)

    Convenience function to Format into a FixedString512, with arguments int, string, float, T1.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, int arg0, string arg1, float arg2, T1 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    String arg1
    Single arg2
    T1 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, Int32, String, String, T1)

    Convenience function to Format into a FixedString512, with arguments int, string, string, T1.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, int arg0, string arg1, string arg2, T1 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    String arg1
    String arg2
    T1 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, Single, T1, Int32, Int32)

    Convenience function to Format into a FixedString512, with arguments float, T1, int, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, float arg0, T1 arg1, int arg2, int arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    T1 arg1
    Int32 arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, Single, T1, Int32, Single)

    Convenience function to Format into a FixedString512, with arguments float, T1, int, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, float arg0, T1 arg1, int arg2, float arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    T1 arg1
    Int32 arg2
    Single arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, Single, T1, Int32, String)

    Convenience function to Format into a FixedString512, with arguments float, T1, int, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, float arg0, T1 arg1, int arg2, string arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    T1 arg1
    Int32 arg2
    String arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, Single, T1, Single, Int32)

    Convenience function to Format into a FixedString512, with arguments float, T1, float, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, float arg0, T1 arg1, float arg2, int arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    T1 arg1
    Single arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, Single, T1, Single, Single)

    Convenience function to Format into a FixedString512, with arguments float, T1, float, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, float arg0, T1 arg1, float arg2, float arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    T1 arg1
    Single arg2
    Single arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, Single, T1, Single, String)

    Convenience function to Format into a FixedString512, with arguments float, T1, float, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, float arg0, T1 arg1, float arg2, string arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    T1 arg1
    Single arg2
    String arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, Single, T1, String, Int32)

    Convenience function to Format into a FixedString512, with arguments float, T1, string, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, float arg0, T1 arg1, string arg2, int arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    T1 arg1
    String arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, Single, T1, String, Single)

    Convenience function to Format into a FixedString512, with arguments float, T1, string, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, float arg0, T1 arg1, string arg2, float arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    T1 arg1
    String arg2
    Single arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, Single, T1, String, String)

    Convenience function to Format into a FixedString512, with arguments float, T1, string, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, float arg0, T1 arg1, string arg2, string arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    T1 arg1
    String arg2
    String arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, Single, Int32, T1, Int32)

    Convenience function to Format into a FixedString512, with arguments float, int, T1, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, float arg0, int arg1, T1 arg2, int arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    Int32 arg1
    T1 arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, Single, Int32, T1, Single)

    Convenience function to Format into a FixedString512, with arguments float, int, T1, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, float arg0, int arg1, T1 arg2, float arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    Int32 arg1
    T1 arg2
    Single arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, Single, Int32, T1, String)

    Convenience function to Format into a FixedString512, with arguments float, int, T1, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, float arg0, int arg1, T1 arg2, string arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    Int32 arg1
    T1 arg2
    String arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, Single, Int32, Int32, T1)

    Convenience function to Format into a FixedString512, with arguments float, int, int, T1.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, float arg0, int arg1, int arg2, T1 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    Int32 arg1
    Int32 arg2
    T1 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, Single, Int32, Single, T1)

    Convenience function to Format into a FixedString512, with arguments float, int, float, T1.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, float arg0, int arg1, float arg2, T1 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    Int32 arg1
    Single arg2
    T1 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, Single, Int32, String, T1)

    Convenience function to Format into a FixedString512, with arguments float, int, string, T1.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, float arg0, int arg1, string arg2, T1 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    Int32 arg1
    String arg2
    T1 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, Single, Single, T1, Int32)

    Convenience function to Format into a FixedString512, with arguments float, float, T1, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, float arg0, float arg1, T1 arg2, int arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    Single arg1
    T1 arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, Single, Single, T1, Single)

    Convenience function to Format into a FixedString512, with arguments float, float, T1, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, float arg0, float arg1, T1 arg2, float arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    Single arg1
    T1 arg2
    Single arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, Single, Single, T1, String)

    Convenience function to Format into a FixedString512, with arguments float, float, T1, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, float arg0, float arg1, T1 arg2, string arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    Single arg1
    T1 arg2
    String arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, Single, Single, Int32, T1)

    Convenience function to Format into a FixedString512, with arguments float, float, int, T1.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, float arg0, float arg1, int arg2, T1 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    Single arg1
    Int32 arg2
    T1 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, Single, Single, Single, T1)

    Convenience function to Format into a FixedString512, with arguments float, float, float, T1.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, float arg0, float arg1, float arg2, T1 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    Single arg1
    Single arg2
    T1 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, Single, Single, String, T1)

    Convenience function to Format into a FixedString512, with arguments float, float, string, T1.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, float arg0, float arg1, string arg2, T1 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    Single arg1
    String arg2
    T1 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, Single, String, T1, Int32)

    Convenience function to Format into a FixedString512, with arguments float, string, T1, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, float arg0, string arg1, T1 arg2, int arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    String arg1
    T1 arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, Single, String, T1, Single)

    Convenience function to Format into a FixedString512, with arguments float, string, T1, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, float arg0, string arg1, T1 arg2, float arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    String arg1
    T1 arg2
    Single arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, Single, String, T1, String)

    Convenience function to Format into a FixedString512, with arguments float, string, T1, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, float arg0, string arg1, T1 arg2, string arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    String arg1
    T1 arg2
    String arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, Single, String, Int32, T1)

    Convenience function to Format into a FixedString512, with arguments float, string, int, T1.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, float arg0, string arg1, int arg2, T1 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    String arg1
    Int32 arg2
    T1 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, Single, String, Single, T1)

    Convenience function to Format into a FixedString512, with arguments float, string, float, T1.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, float arg0, string arg1, float arg2, T1 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    String arg1
    Single arg2
    T1 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, Single, String, String, T1)

    Convenience function to Format into a FixedString512, with arguments float, string, string, T1.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, float arg0, string arg1, string arg2, T1 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    String arg1
    String arg2
    T1 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, String, T1, Int32, Int32)

    Convenience function to Format into a FixedString512, with arguments string, T1, int, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, string arg0, T1 arg1, int arg2, int arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    T1 arg1
    Int32 arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, String, T1, Int32, Single)

    Convenience function to Format into a FixedString512, with arguments string, T1, int, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, string arg0, T1 arg1, int arg2, float arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    T1 arg1
    Int32 arg2
    Single arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, String, T1, Int32, String)

    Convenience function to Format into a FixedString512, with arguments string, T1, int, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, string arg0, T1 arg1, int arg2, string arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    T1 arg1
    Int32 arg2
    String arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, String, T1, Single, Int32)

    Convenience function to Format into a FixedString512, with arguments string, T1, float, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, string arg0, T1 arg1, float arg2, int arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    T1 arg1
    Single arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, String, T1, Single, Single)

    Convenience function to Format into a FixedString512, with arguments string, T1, float, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, string arg0, T1 arg1, float arg2, float arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    T1 arg1
    Single arg2
    Single arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, String, T1, Single, String)

    Convenience function to Format into a FixedString512, with arguments string, T1, float, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, string arg0, T1 arg1, float arg2, string arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    T1 arg1
    Single arg2
    String arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, String, T1, String, Int32)

    Convenience function to Format into a FixedString512, with arguments string, T1, string, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, string arg0, T1 arg1, string arg2, int arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    T1 arg1
    String arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, String, T1, String, Single)

    Convenience function to Format into a FixedString512, with arguments string, T1, string, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, string arg0, T1 arg1, string arg2, float arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    T1 arg1
    String arg2
    Single arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, String, T1, String, String)

    Convenience function to Format into a FixedString512, with arguments string, T1, string, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, string arg0, T1 arg1, string arg2, string arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    T1 arg1
    String arg2
    String arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, String, Int32, T1, Int32)

    Convenience function to Format into a FixedString512, with arguments string, int, T1, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, string arg0, int arg1, T1 arg2, int arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    Int32 arg1
    T1 arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, String, Int32, T1, Single)

    Convenience function to Format into a FixedString512, with arguments string, int, T1, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, string arg0, int arg1, T1 arg2, float arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    Int32 arg1
    T1 arg2
    Single arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, String, Int32, T1, String)

    Convenience function to Format into a FixedString512, with arguments string, int, T1, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, string arg0, int arg1, T1 arg2, string arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    Int32 arg1
    T1 arg2
    String arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, String, Int32, Int32, T1)

    Convenience function to Format into a FixedString512, with arguments string, int, int, T1.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, string arg0, int arg1, int arg2, T1 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    Int32 arg1
    Int32 arg2
    T1 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, String, Int32, Single, T1)

    Convenience function to Format into a FixedString512, with arguments string, int, float, T1.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, string arg0, int arg1, float arg2, T1 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    Int32 arg1
    Single arg2
    T1 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, String, Int32, String, T1)

    Convenience function to Format into a FixedString512, with arguments string, int, string, T1.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, string arg0, int arg1, string arg2, T1 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    Int32 arg1
    String arg2
    T1 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, String, Single, T1, Int32)

    Convenience function to Format into a FixedString512, with arguments string, float, T1, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, string arg0, float arg1, T1 arg2, int arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    Single arg1
    T1 arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, String, Single, T1, Single)

    Convenience function to Format into a FixedString512, with arguments string, float, T1, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, string arg0, float arg1, T1 arg2, float arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    Single arg1
    T1 arg2
    Single arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, String, Single, T1, String)

    Convenience function to Format into a FixedString512, with arguments string, float, T1, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, string arg0, float arg1, T1 arg2, string arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    Single arg1
    T1 arg2
    String arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, String, Single, Int32, T1)

    Convenience function to Format into a FixedString512, with arguments string, float, int, T1.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, string arg0, float arg1, int arg2, T1 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    Single arg1
    Int32 arg2
    T1 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, String, Single, Single, T1)

    Convenience function to Format into a FixedString512, with arguments string, float, float, T1.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, string arg0, float arg1, float arg2, T1 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    Single arg1
    Single arg2
    T1 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, String, Single, String, T1)

    Convenience function to Format into a FixedString512, with arguments string, float, string, T1.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, string arg0, float arg1, string arg2, T1 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    Single arg1
    String arg2
    T1 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, String, String, T1, Int32)

    Convenience function to Format into a FixedString512, with arguments string, string, T1, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, string arg0, string arg1, T1 arg2, int arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    String arg1
    T1 arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, String, String, T1, Single)

    Convenience function to Format into a FixedString512, with arguments string, string, T1, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, string arg0, string arg1, T1 arg2, float arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    String arg1
    T1 arg2
    Single arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, String, String, T1, String)

    Convenience function to Format into a FixedString512, with arguments string, string, T1, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, string arg0, string arg1, T1 arg2, string arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    String arg1
    T1 arg2
    String arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, String, String, Int32, T1)

    Convenience function to Format into a FixedString512, with arguments string, string, int, T1.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, string arg0, string arg1, int arg2, T1 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    String arg1
    Int32 arg2
    T1 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, String, String, Single, T1)

    Convenience function to Format into a FixedString512, with arguments string, string, float, T1.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, string arg0, string arg1, float arg2, T1 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    String arg1
    Single arg2
    T1 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1>(FixedString512, String, String, String, T1)

    Convenience function to Format into a FixedString512, with arguments string, string, string, T1.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1>(FixedString512 formatString, string arg0, string arg1, string arg2, T1 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    String arg1
    String arg2
    T1 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1

    Format<T1, T2>(FixedString128, T1, T2)

    Convenience function to Format into a FixedString128, with arguments T1, T2.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format<T1, T2>(FixedString128 formatString, T1 arg0, T2 arg1)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString128 formatString
    T1 arg0
    T2 arg1
    Returns
    Type Description
    FixedString128
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString128, T1, T2, Int32)

    Convenience function to Format into a FixedString128, with arguments T1, T2, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format<T1, T2>(FixedString128 formatString, T1 arg0, T2 arg1, int arg2)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString128 formatString
    T1 arg0
    T2 arg1
    Int32 arg2
    Returns
    Type Description
    FixedString128
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString128, T1, T2, Single)

    Convenience function to Format into a FixedString128, with arguments T1, T2, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format<T1, T2>(FixedString128 formatString, T1 arg0, T2 arg1, float arg2)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString128 formatString
    T1 arg0
    T2 arg1
    Single arg2
    Returns
    Type Description
    FixedString128
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString128, T1, T2, String)

    Convenience function to Format into a FixedString128, with arguments T1, T2, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format<T1, T2>(FixedString128 formatString, T1 arg0, T2 arg1, string arg2)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString128 formatString
    T1 arg0
    T2 arg1
    String arg2
    Returns
    Type Description
    FixedString128
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString128, T1, Int32, T2)

    Convenience function to Format into a FixedString128, with arguments T1, int, T2.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format<T1, T2>(FixedString128 formatString, T1 arg0, int arg1, T2 arg2)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString128 formatString
    T1 arg0
    Int32 arg1
    T2 arg2
    Returns
    Type Description
    FixedString128
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString128, T1, Single, T2)

    Convenience function to Format into a FixedString128, with arguments T1, float, T2.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format<T1, T2>(FixedString128 formatString, T1 arg0, float arg1, T2 arg2)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString128 formatString
    T1 arg0
    Single arg1
    T2 arg2
    Returns
    Type Description
    FixedString128
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString128, T1, String, T2)

    Convenience function to Format into a FixedString128, with arguments T1, string, T2.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format<T1, T2>(FixedString128 formatString, T1 arg0, string arg1, T2 arg2)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString128 formatString
    T1 arg0
    String arg1
    T2 arg2
    Returns
    Type Description
    FixedString128
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString128, Int32, T1, T2)

    Convenience function to Format into a FixedString128, with arguments int, T1, T2.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format<T1, T2>(FixedString128 formatString, int arg0, T1 arg1, T2 arg2)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString128 formatString
    Int32 arg0
    T1 arg1
    T2 arg2
    Returns
    Type Description
    FixedString128
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString128, Single, T1, T2)

    Convenience function to Format into a FixedString128, with arguments float, T1, T2.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format<T1, T2>(FixedString128 formatString, float arg0, T1 arg1, T2 arg2)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString128 formatString
    Single arg0
    T1 arg1
    T2 arg2
    Returns
    Type Description
    FixedString128
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString128, String, T1, T2)

    Convenience function to Format into a FixedString128, with arguments string, T1, T2.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format<T1, T2>(FixedString128 formatString, string arg0, T1 arg1, T2 arg2)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString128 formatString
    String arg0
    T1 arg1
    T2 arg2
    Returns
    Type Description
    FixedString128
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString512, T1, T2, Int32, Int32)

    Convenience function to Format into a FixedString512, with arguments T1, T2, int, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2>(FixedString512 formatString, T1 arg0, T2 arg1, int arg2, int arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    T2 arg1
    Int32 arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString512, T1, T2, Int32, Single)

    Convenience function to Format into a FixedString512, with arguments T1, T2, int, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2>(FixedString512 formatString, T1 arg0, T2 arg1, int arg2, float arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    T2 arg1
    Int32 arg2
    Single arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString512, T1, T2, Int32, String)

    Convenience function to Format into a FixedString512, with arguments T1, T2, int, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2>(FixedString512 formatString, T1 arg0, T2 arg1, int arg2, string arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    T2 arg1
    Int32 arg2
    String arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString512, T1, T2, Single, Int32)

    Convenience function to Format into a FixedString512, with arguments T1, T2, float, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2>(FixedString512 formatString, T1 arg0, T2 arg1, float arg2, int arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    T2 arg1
    Single arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString512, T1, T2, Single, Single)

    Convenience function to Format into a FixedString512, with arguments T1, T2, float, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2>(FixedString512 formatString, T1 arg0, T2 arg1, float arg2, float arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    T2 arg1
    Single arg2
    Single arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString512, T1, T2, Single, String)

    Convenience function to Format into a FixedString512, with arguments T1, T2, float, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2>(FixedString512 formatString, T1 arg0, T2 arg1, float arg2, string arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    T2 arg1
    Single arg2
    String arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString512, T1, T2, String, Int32)

    Convenience function to Format into a FixedString512, with arguments T1, T2, string, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2>(FixedString512 formatString, T1 arg0, T2 arg1, string arg2, int arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    T2 arg1
    String arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString512, T1, T2, String, Single)

    Convenience function to Format into a FixedString512, with arguments T1, T2, string, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2>(FixedString512 formatString, T1 arg0, T2 arg1, string arg2, float arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    T2 arg1
    String arg2
    Single arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString512, T1, T2, String, String)

    Convenience function to Format into a FixedString512, with arguments T1, T2, string, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2>(FixedString512 formatString, T1 arg0, T2 arg1, string arg2, string arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    T2 arg1
    String arg2
    String arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString512, T1, Int32, T2, Int32)

    Convenience function to Format into a FixedString512, with arguments T1, int, T2, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2>(FixedString512 formatString, T1 arg0, int arg1, T2 arg2, int arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    Int32 arg1
    T2 arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString512, T1, Int32, T2, Single)

    Convenience function to Format into a FixedString512, with arguments T1, int, T2, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2>(FixedString512 formatString, T1 arg0, int arg1, T2 arg2, float arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    Int32 arg1
    T2 arg2
    Single arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString512, T1, Int32, T2, String)

    Convenience function to Format into a FixedString512, with arguments T1, int, T2, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2>(FixedString512 formatString, T1 arg0, int arg1, T2 arg2, string arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    Int32 arg1
    T2 arg2
    String arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString512, T1, Int32, Int32, T2)

    Convenience function to Format into a FixedString512, with arguments T1, int, int, T2.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2>(FixedString512 formatString, T1 arg0, int arg1, int arg2, T2 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    Int32 arg1
    Int32 arg2
    T2 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString512, T1, Int32, Single, T2)

    Convenience function to Format into a FixedString512, with arguments T1, int, float, T2.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2>(FixedString512 formatString, T1 arg0, int arg1, float arg2, T2 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    Int32 arg1
    Single arg2
    T2 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString512, T1, Int32, String, T2)

    Convenience function to Format into a FixedString512, with arguments T1, int, string, T2.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2>(FixedString512 formatString, T1 arg0, int arg1, string arg2, T2 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    Int32 arg1
    String arg2
    T2 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString512, T1, Single, T2, Int32)

    Convenience function to Format into a FixedString512, with arguments T1, float, T2, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2>(FixedString512 formatString, T1 arg0, float arg1, T2 arg2, int arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    Single arg1
    T2 arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString512, T1, Single, T2, Single)

    Convenience function to Format into a FixedString512, with arguments T1, float, T2, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2>(FixedString512 formatString, T1 arg0, float arg1, T2 arg2, float arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    Single arg1
    T2 arg2
    Single arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString512, T1, Single, T2, String)

    Convenience function to Format into a FixedString512, with arguments T1, float, T2, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2>(FixedString512 formatString, T1 arg0, float arg1, T2 arg2, string arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    Single arg1
    T2 arg2
    String arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString512, T1, Single, Int32, T2)

    Convenience function to Format into a FixedString512, with arguments T1, float, int, T2.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2>(FixedString512 formatString, T1 arg0, float arg1, int arg2, T2 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    Single arg1
    Int32 arg2
    T2 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString512, T1, Single, Single, T2)

    Convenience function to Format into a FixedString512, with arguments T1, float, float, T2.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2>(FixedString512 formatString, T1 arg0, float arg1, float arg2, T2 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    Single arg1
    Single arg2
    T2 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString512, T1, Single, String, T2)

    Convenience function to Format into a FixedString512, with arguments T1, float, string, T2.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2>(FixedString512 formatString, T1 arg0, float arg1, string arg2, T2 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    Single arg1
    String arg2
    T2 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString512, T1, String, T2, Int32)

    Convenience function to Format into a FixedString512, with arguments T1, string, T2, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2>(FixedString512 formatString, T1 arg0, string arg1, T2 arg2, int arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    String arg1
    T2 arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString512, T1, String, T2, Single)

    Convenience function to Format into a FixedString512, with arguments T1, string, T2, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2>(FixedString512 formatString, T1 arg0, string arg1, T2 arg2, float arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    String arg1
    T2 arg2
    Single arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString512, T1, String, T2, String)

    Convenience function to Format into a FixedString512, with arguments T1, string, T2, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2>(FixedString512 formatString, T1 arg0, string arg1, T2 arg2, string arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    String arg1
    T2 arg2
    String arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString512, T1, String, Int32, T2)

    Convenience function to Format into a FixedString512, with arguments T1, string, int, T2.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2>(FixedString512 formatString, T1 arg0, string arg1, int arg2, T2 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    String arg1
    Int32 arg2
    T2 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString512, T1, String, Single, T2)

    Convenience function to Format into a FixedString512, with arguments T1, string, float, T2.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2>(FixedString512 formatString, T1 arg0, string arg1, float arg2, T2 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    String arg1
    Single arg2
    T2 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString512, T1, String, String, T2)

    Convenience function to Format into a FixedString512, with arguments T1, string, string, T2.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2>(FixedString512 formatString, T1 arg0, string arg1, string arg2, T2 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    String arg1
    String arg2
    T2 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString512, Int32, T1, T2, Int32)

    Convenience function to Format into a FixedString512, with arguments int, T1, T2, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2>(FixedString512 formatString, int arg0, T1 arg1, T2 arg2, int arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    T1 arg1
    T2 arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString512, Int32, T1, T2, Single)

    Convenience function to Format into a FixedString512, with arguments int, T1, T2, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2>(FixedString512 formatString, int arg0, T1 arg1, T2 arg2, float arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    T1 arg1
    T2 arg2
    Single arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString512, Int32, T1, T2, String)

    Convenience function to Format into a FixedString512, with arguments int, T1, T2, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2>(FixedString512 formatString, int arg0, T1 arg1, T2 arg2, string arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    T1 arg1
    T2 arg2
    String arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString512, Int32, T1, Int32, T2)

    Convenience function to Format into a FixedString512, with arguments int, T1, int, T2.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2>(FixedString512 formatString, int arg0, T1 arg1, int arg2, T2 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    T1 arg1
    Int32 arg2
    T2 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString512, Int32, T1, Single, T2)

    Convenience function to Format into a FixedString512, with arguments int, T1, float, T2.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2>(FixedString512 formatString, int arg0, T1 arg1, float arg2, T2 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    T1 arg1
    Single arg2
    T2 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString512, Int32, T1, String, T2)

    Convenience function to Format into a FixedString512, with arguments int, T1, string, T2.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2>(FixedString512 formatString, int arg0, T1 arg1, string arg2, T2 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    T1 arg1
    String arg2
    T2 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString512, Int32, Int32, T1, T2)

    Convenience function to Format into a FixedString512, with arguments int, int, T1, T2.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2>(FixedString512 formatString, int arg0, int arg1, T1 arg2, T2 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    Int32 arg1
    T1 arg2
    T2 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString512, Int32, Single, T1, T2)

    Convenience function to Format into a FixedString512, with arguments int, float, T1, T2.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2>(FixedString512 formatString, int arg0, float arg1, T1 arg2, T2 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    Single arg1
    T1 arg2
    T2 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString512, Int32, String, T1, T2)

    Convenience function to Format into a FixedString512, with arguments int, string, T1, T2.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2>(FixedString512 formatString, int arg0, string arg1, T1 arg2, T2 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    String arg1
    T1 arg2
    T2 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString512, Single, T1, T2, Int32)

    Convenience function to Format into a FixedString512, with arguments float, T1, T2, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2>(FixedString512 formatString, float arg0, T1 arg1, T2 arg2, int arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    T1 arg1
    T2 arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString512, Single, T1, T2, Single)

    Convenience function to Format into a FixedString512, with arguments float, T1, T2, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2>(FixedString512 formatString, float arg0, T1 arg1, T2 arg2, float arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    T1 arg1
    T2 arg2
    Single arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString512, Single, T1, T2, String)

    Convenience function to Format into a FixedString512, with arguments float, T1, T2, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2>(FixedString512 formatString, float arg0, T1 arg1, T2 arg2, string arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    T1 arg1
    T2 arg2
    String arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString512, Single, T1, Int32, T2)

    Convenience function to Format into a FixedString512, with arguments float, T1, int, T2.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2>(FixedString512 formatString, float arg0, T1 arg1, int arg2, T2 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    T1 arg1
    Int32 arg2
    T2 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString512, Single, T1, Single, T2)

    Convenience function to Format into a FixedString512, with arguments float, T1, float, T2.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2>(FixedString512 formatString, float arg0, T1 arg1, float arg2, T2 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    T1 arg1
    Single arg2
    T2 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString512, Single, T1, String, T2)

    Convenience function to Format into a FixedString512, with arguments float, T1, string, T2.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2>(FixedString512 formatString, float arg0, T1 arg1, string arg2, T2 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    T1 arg1
    String arg2
    T2 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString512, Single, Int32, T1, T2)

    Convenience function to Format into a FixedString512, with arguments float, int, T1, T2.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2>(FixedString512 formatString, float arg0, int arg1, T1 arg2, T2 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    Int32 arg1
    T1 arg2
    T2 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString512, Single, Single, T1, T2)

    Convenience function to Format into a FixedString512, with arguments float, float, T1, T2.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2>(FixedString512 formatString, float arg0, float arg1, T1 arg2, T2 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    Single arg1
    T1 arg2
    T2 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString512, Single, String, T1, T2)

    Convenience function to Format into a FixedString512, with arguments float, string, T1, T2.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2>(FixedString512 formatString, float arg0, string arg1, T1 arg2, T2 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    String arg1
    T1 arg2
    T2 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString512, String, T1, T2, Int32)

    Convenience function to Format into a FixedString512, with arguments string, T1, T2, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2>(FixedString512 formatString, string arg0, T1 arg1, T2 arg2, int arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    T1 arg1
    T2 arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString512, String, T1, T2, Single)

    Convenience function to Format into a FixedString512, with arguments string, T1, T2, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2>(FixedString512 formatString, string arg0, T1 arg1, T2 arg2, float arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    T1 arg1
    T2 arg2
    Single arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString512, String, T1, T2, String)

    Convenience function to Format into a FixedString512, with arguments string, T1, T2, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2>(FixedString512 formatString, string arg0, T1 arg1, T2 arg2, string arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    T1 arg1
    T2 arg2
    String arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString512, String, T1, Int32, T2)

    Convenience function to Format into a FixedString512, with arguments string, T1, int, T2.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2>(FixedString512 formatString, string arg0, T1 arg1, int arg2, T2 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    T1 arg1
    Int32 arg2
    T2 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString512, String, T1, Single, T2)

    Convenience function to Format into a FixedString512, with arguments string, T1, float, T2.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2>(FixedString512 formatString, string arg0, T1 arg1, float arg2, T2 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    T1 arg1
    Single arg2
    T2 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString512, String, T1, String, T2)

    Convenience function to Format into a FixedString512, with arguments string, T1, string, T2.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2>(FixedString512 formatString, string arg0, T1 arg1, string arg2, T2 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    T1 arg1
    String arg2
    T2 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString512, String, Int32, T1, T2)

    Convenience function to Format into a FixedString512, with arguments string, int, T1, T2.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2>(FixedString512 formatString, string arg0, int arg1, T1 arg2, T2 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    Int32 arg1
    T1 arg2
    T2 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString512, String, Single, T1, T2)

    Convenience function to Format into a FixedString512, with arguments string, float, T1, T2.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2>(FixedString512 formatString, string arg0, float arg1, T1 arg2, T2 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    Single arg1
    T1 arg2
    T2 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2>(FixedString512, String, String, T1, T2)

    Convenience function to Format into a FixedString512, with arguments string, string, T1, T2.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2>(FixedString512 formatString, string arg0, string arg1, T1 arg2, T2 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    String arg1
    T1 arg2
    T2 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2

    Format<T1, T2, T3>(FixedString128, T1, T2, T3)

    Convenience function to Format into a FixedString128, with arguments T1, T2, T3.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString128 Format<T1, T2, T3>(FixedString128 formatString, T1 arg0, T2 arg1, T3 arg2)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes where T3 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString128 formatString
    T1 arg0
    T2 arg1
    T3 arg2
    Returns
    Type Description
    FixedString128
    Type Parameters
    Name Description
    T1
    T2
    T3

    Format<T1, T2, T3>(FixedString512, T1, T2, T3, Int32)

    Convenience function to Format into a FixedString512, with arguments T1, T2, T3, int.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2, T3>(FixedString512 formatString, T1 arg0, T2 arg1, T3 arg2, int arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes where T3 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    T2 arg1
    T3 arg2
    Int32 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2
    T3

    Format<T1, T2, T3>(FixedString512, T1, T2, T3, Single)

    Convenience function to Format into a FixedString512, with arguments T1, T2, T3, float.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2, T3>(FixedString512 formatString, T1 arg0, T2 arg1, T3 arg2, float arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes where T3 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    T2 arg1
    T3 arg2
    Single arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2
    T3

    Format<T1, T2, T3>(FixedString512, T1, T2, T3, String)

    Convenience function to Format into a FixedString512, with arguments T1, T2, T3, string.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2, T3>(FixedString512 formatString, T1 arg0, T2 arg1, T3 arg2, string arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes where T3 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    T2 arg1
    T3 arg2
    String arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2
    T3

    Format<T1, T2, T3>(FixedString512, T1, T2, Int32, T3)

    Convenience function to Format into a FixedString512, with arguments T1, T2, int, T3.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2, T3>(FixedString512 formatString, T1 arg0, T2 arg1, int arg2, T3 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes where T3 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    T2 arg1
    Int32 arg2
    T3 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2
    T3

    Format<T1, T2, T3>(FixedString512, T1, T2, Single, T3)

    Convenience function to Format into a FixedString512, with arguments T1, T2, float, T3.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2, T3>(FixedString512 formatString, T1 arg0, T2 arg1, float arg2, T3 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes where T3 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    T2 arg1
    Single arg2
    T3 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2
    T3

    Format<T1, T2, T3>(FixedString512, T1, T2, String, T3)

    Convenience function to Format into a FixedString512, with arguments T1, T2, string, T3.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2, T3>(FixedString512 formatString, T1 arg0, T2 arg1, string arg2, T3 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes where T3 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    T2 arg1
    String arg2
    T3 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2
    T3

    Format<T1, T2, T3>(FixedString512, T1, Int32, T2, T3)

    Convenience function to Format into a FixedString512, with arguments T1, int, T2, T3.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2, T3>(FixedString512 formatString, T1 arg0, int arg1, T2 arg2, T3 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes where T3 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    Int32 arg1
    T2 arg2
    T3 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2
    T3

    Format<T1, T2, T3>(FixedString512, T1, Single, T2, T3)

    Convenience function to Format into a FixedString512, with arguments T1, float, T2, T3.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2, T3>(FixedString512 formatString, T1 arg0, float arg1, T2 arg2, T3 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes where T3 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    Single arg1
    T2 arg2
    T3 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2
    T3

    Format<T1, T2, T3>(FixedString512, T1, String, T2, T3)

    Convenience function to Format into a FixedString512, with arguments T1, string, T2, T3.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2, T3>(FixedString512 formatString, T1 arg0, string arg1, T2 arg2, T3 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes where T3 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    String arg1
    T2 arg2
    T3 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2
    T3

    Format<T1, T2, T3>(FixedString512, Int32, T1, T2, T3)

    Convenience function to Format into a FixedString512, with arguments int, T1, T2, T3.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2, T3>(FixedString512 formatString, int arg0, T1 arg1, T2 arg2, T3 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes where T3 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Int32 arg0
    T1 arg1
    T2 arg2
    T3 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2
    T3

    Format<T1, T2, T3>(FixedString512, Single, T1, T2, T3)

    Convenience function to Format into a FixedString512, with arguments float, T1, T2, T3.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2, T3>(FixedString512 formatString, float arg0, T1 arg1, T2 arg2, T3 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes where T3 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    Single arg0
    T1 arg1
    T2 arg2
    T3 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2
    T3

    Format<T1, T2, T3>(FixedString512, String, T1, T2, T3)

    Convenience function to Format into a FixedString512, with arguments string, T1, T2, T3.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2, T3>(FixedString512 formatString, string arg0, T1 arg1, T2 arg2, T3 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes where T3 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    String arg0
    T1 arg1
    T2 arg2
    T3 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2
    T3

    Format<T1, T2, T3, T4>(FixedString512, T1, T2, T3, T4)

    Convenience function to Format into a FixedString512, with arguments T1, T2, T3, T4.

    If more control over the return type, or more complex formatting is required, please manually create a FixedStringN and use its Append and AppendFormat methods.

    Declaration
    public static FixedString512 Format<T1, T2, T3, T4>(FixedString512 formatString, T1 arg0, T2 arg1, T3 arg2, T4 arg3)
        where T1 : struct, INativeList<byte>, IUTF8Bytes where T2 : struct, INativeList<byte>, IUTF8Bytes where T3 : struct, INativeList<byte>, IUTF8Bytes where T4 : struct, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    FixedString512 formatString
    T1 arg0
    T2 arg1
    T3 arg2
    T4 arg3
    Returns
    Type Description
    FixedString512
    Type Parameters
    Name Description
    T1
    T2
    T3
    T4
    Back to top
    Copyright © 2023 Unity Technologies — Terms of use
    • Legal
    • Privacy Policy
    • Cookies
    • Do Not Sell or Share My Personal Information
    • Your Privacy Choices (Cookie Settings)
    "Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
    Generated by DocFX on 18 October 2023