Get the list of processes

@ppr @prasath17 @prasath_S @Yoichi @I.S @aksh1yadav @abdel @J0ska @sarathi125

what does this expression means ?
tmp_LstProcess.Where(Function(prc) prc.ProcessName.ToString.ToLower.Contains(“outlook”)).Count = 0
tmp_LstProcess is the output of get process of datatype Collection

@Sakshi_Jain
it is filtering a collection of Processes and counts the outlook processes from it

Are you testing our .net skills? :blush:

2 Likes

it’s used inside a condition:
if tmp_LstProcess.Where(Function(prc) prc.ProcessName.ToString.ToLower.Contains(“outlook”)).Count = 0 then : Treatment Else: some other treatment

@J0ska haha no i am just trying to understand and debug one workflow

@ppr @abdel okay what are the parameters i can change here ?
or how can i learn more about this ?