G gkumar Active Member Licensed User Longtime User Apr 2, 2012 #1 Is there any C# equivalent String.Format method available with B4A string class? I want to pass the dynamic parameters to the string to append in between.
Is there any C# equivalent String.Format method available with B4A string class? I want to pass the dynamic parameters to the string to append in between.
Erel B4X founder Staff member Licensed User Longtime User Apr 2, 2012 #2 No. You can try StringBuilder: B4X: Dim sb As StringBuilder sb.Initialize sb.Append("The value of x is ").Append(x).Append(" and the value of y is ").Append(y) _ .Append("!")
No. You can try StringBuilder: B4X: Dim sb As StringBuilder sb.Initialize sb.Append("The value of x is ").Append(x).Append(" and the value of y is ").Append(y) _ .Append("!")