Guest User

Untitled

a guest
Dec 18th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. private string GetFormattedValue()
  2. {
  3. var formattedString = format != null ? string.Format(format, value) : value.ToString();
  4. return formattedString;
  5. }
  6.  
  7. private string GetFormattedValue()
  8. {
  9. return format != null ? string.Format(format, value) : value.ToString();
  10. }
Add Comment
Please, Sign In to add comment