ToString() public method

Returns a System.String that represents the current Harvest.
public ToString ( ) : string
return string
Exemplo n.º 1
0
 /// <inheritdoc/>
 public override bool DoesModelPassFilter(string filter) =>
 DateAvailable.Contains(filter) ||
 GrowthTime.ToString().Contains(filter) ||
 Harvest.ToString().Contains(filter) ||
 HarvestWithTending.ToString().Contains(filter) ||
 Seed.DoesModelPassFilter(filter) ||
 Products.Any(product => product.DoesModelPassFilter(filter));