/// <summary>
 /// Update the <see cref="Text"/> representation from the <see cref="Tokens"/>.
 /// </summary>
 public void UpdateTextFromTokens()
 {
     Text = CppToken.TokensToString(Tokens);
 }
Example #2
0
 /// <summary>
 /// Call this method to update the <see cref="Value"/> property from the list of <see cref="Tokens"/>
 /// </summary>
 public void UpdateValueFromTokens()
 {
     Value = CppToken.TokensToString(Tokens);
 }