OutputVar := new MfText.StringBuilder()
OutputVar := new MfText.StringBuilder(capacity)
OutputVar := new MfText.StringBuilder(capacity, maxCapacity)
OutputVar := new MfText.StringBuilder(value)
OutputVar := new MfText.StringBuilder(value, capacity)
OutputVar := new MfText.StringBuilder(value, startIndex, length, capacity)
Initializes a new instance of the StringBuilder class.
The string value of this instance is set to empty string, and the capacity is set to the implementation-specific default capacity.
sb := new MfText.StringBuilder()
Initializes a new instance of the StringBuilder class using the specified capacity.
capacity
The suggested starting size of the StringBuilder.
Can be any type that matches IsInteger or var integer
Throws MfArgumentOutOfRangeException if capacity is less than zero.
The capacity parameter defines the maximum number of characters that can be stored in the memory allocated by the current instance. Its value is assigned to the Capacity property. If the number of characters to be stored in the current instance exceeds this capacity value, the StringBuilder object allocates additional memory to store them.
If capacity is zero, the implementation-specific default capacity is used.
The string value of this instance is set to null. If capacity is zero, the implementation-specific default capacity is used.
If you intend to call the Constructor(value) method by passing in numeric integer string then wrap the in an instance of MfString to ensure the correct overload is called. sb := new MfText.StringBuilder("1000") will call the Constructor(capacity) overload. sb := new MfText.StringBuilder(new MfString("1000")) will call the Constructor(value) overload. sb := new MfText.StringBuilder("1000.0") will call the Constructor(value) overload.
capacity := 255
sb := new MfText.StringBuilder(capacity)
Initializes a new instance of the StringBuilder class that starts with a specified capacity and can grow to a specified maximum.
capacity
The suggested starting size of the StringBuilder.
Can be any type that matches IsInteger or var integer
maxCapacity
The maximum number of characters the current string can contain.
Can be any type that matches IsInteger or var integer.
Throws MfArgumentOutOfRangeException if maxCapacity is less than one, capacity is less than zero, or capacity is greater than maxCapacity.
The capacity parameter defines the maximum number of characters that can be stored in the memory allocated by the current instance. Its value is assigned to the Capacity property. If the number of characters to be stored in the current instance exceeds this capacity value, the StringBuilder object allocates additional memory to store them.
If capacity is zero, the implementation-specific default capacity is used.
The maxCapacity property defines the maximum number of characters that the current instance can hold. Its value is assigned to the MaxCapacity property. If the number of characters to be stored in the current instance exceeds this maxCapacity value, the StringBuilder object does not allocate additional memory, but instead throws an exception.
capacity := 255
maxCapacity := 1024
sb := new MfText.StringBuilder(capacity, maxCapacity)
Initializes a new instance of the StringBuilder class using the specified string.
value
The string that contains the substring used to initialize the value of this instance. If value is null, the new StringBuilder will contain the empty string.
Can be var number or string or any object that derives from MfObject.
If value is null, the new StringBuilder will contain the empty string.
If value is an object then its ToString output is used.
If var integer is passed into Constructor(value) such as sb := new MfText.StringBuilder("1000") it will result in the Constructor(capacity) overload being called. To pass integer var into Constructor(value) first wrap the integer var in instance of MfString as follows sb := new MfText.StringBuilder(new MfString("1000"))
Calling Constructor(value) and passing in a non-integer number is fine such as sb := new MfText.StringBuilder("1000.0")
initialString := "Initial string for stringbuilder."
sb := new MfText.StringBuilder(initialString)
initialString := new MfString("Initial string for stringbuilder.")
sb := new MfText.StringBuilder(initialString)
Initializes a new instance of the StringBuilder class using the specified string and capacity.
value
The string that contains the substring used to initialize the value of this instance. If value is null, the new StringBuilder will contain the empty string.
Can be var number or string or any object that derives from MfObject.
capacity
The suggested starting size of the StringBuilder.
Can be any type that matches IsInteger or var integer.
Throws MfArgumentOutOfRangeException if capacity is less than zero.
The capacity parameter defines the maximum number of characters that can be stored in the memory allocated by the current instance. Its value is assigned to the Capacity property. If the number of characters to be stored in the current instance exceeds this capacity value, the StringBuilder object allocates additional memory to store them.
If capacity is zero, the implementation-specific default capacity is used.
If value is an object then its ToString output is used.
If var integer is passed into Constructor(value, capacity) such as sb := new MfText.StringBuilder("1000", 255) it will result in the Constructor(capacity, maxCapacity) overload being called. To pass integer var into Constructor(value, capacity) first wrap the integer var in instance of MfString as follows sb := new MfText.StringBuilder(new MfString("1000"), 255)
Calling Constructor(value, capacity) and passing in a non-integer number is fine such as sb := new MfText.StringBuilder("1000.0", 255)
initialString := "Initial string for stringbuilder."
capacity := 255
sb := new MfText.StringBuilder(initialString, capacity)
initialString := new MfString("Initial string for stringbuilder.")
capacity := new MfInteger(255)
sb := new MfText.StringBuilder(initialString, capacity)
Initializes a new instance of the StringBuilder class from the specified substring and capacity.
value
The string that contains the substring used to initialize the value of this instance. If value is null, the new StringBuilder will contain the empty string.
Can be var number or string or any object that derives from MfObject.
startIndex
The position within value where the substring begins.
Can be any type that matches IsInteger or var integer.
length
The number of characters in the substring.
Can be any type that matches IsInteger or var integer.
capacity
The suggested starting size of the StringBuilder.
Can be any type that matches IsInteger or var integer.
Throws MfArgumentOutOfRangeException if capacity is less than zero or startIndex plus length is not a position within value.
The capacity parameter defines the maximum number of characters that can be stored in the memory allocated by the current instance. Its value is assigned to the Capacity property. If the number of characters to be stored in the current instance exceeds this capacity value, the StringBuilder object allocates additional memory to store them.
If capacity is zero, the implementation-specific default capacity is used.
If value is an object then its ToString output is used.
initialString := "Initial string for stringbuilder."
startIndex := 0
substringLength := 14
capacity := 255
sb := new MfText.StringBuilder(initialString, startIndex, substringLength, capacity)