Reply To: Problem using filters with C#

Home Forums Discussions Support Problem using filters with C# Reply To: Problem using filters with C#

#11253
Vadim Smirnov
Keymaster

    Below sf assigned a copy of the ft.StaticFilters[0]

    var sf = ft.StaticFilters[0];

    and then the copy is initialized. So, you should assign it back after initialization or define sf as a reference to ft.StaticFilters[0]

    ref var sf = ref ft.StaticFilters[0];