6 writes to Name
Microsoft.ML.Samples (6)
Dynamic\DataOperations\FilterRowsByStatefulCustomPredicate.cs (6)
19
new InputData() {
Name
= "Joey", FilterNext = false },
20
new InputData() {
Name
= "Chandler", FilterNext = false },
21
new InputData() {
Name
= "Ross", FilterNext = false },
22
new InputData() {
Name
= "Monica", FilterNext = true },
23
new InputData() {
Name
= "Rachel", FilterNext = true },
24
new InputData() {
Name
= "Phoebe", FilterNext = false },
3 references to Name
Microsoft.ML.Samples (3)
Dynamic\DataOperations\FilterRowsByStatefulCustomPredicate.cs (3)
33
Console.WriteLine(row.
Name
);
53
return (filter && input.
Name
.StartsWith("r", StringComparison.OrdinalIgnoreCase));
65
Console.WriteLine(row.
Name
);