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