DFLayoutCodeFieldProperties.cs 362 B

123456789101112131415
  1. namespace InABox.Core
  2. {
  3. public class DFLayoutCodeFieldProperties : DFLayoutFieldProperties<string>
  4. {
  5. public override string FormatValue(object? value)
  6. {
  7. return string.Format("{0}", value);
  8. }
  9. public override object? ParseValue(object? value)
  10. {
  11. return value?.ToString();
  12. }
  13. }
  14. }