fatsuperman.
fatsuperman.
CC#
Created by fatsuperman. on 8/29/2022 in #help
Enumerable merging with Enumerable
can i also do objects = objects.concat(getObjects) ? @thinker227
8 replies
CC#
Created by fatsuperman. on 8/29/2022 in #help
Enumerable merging with Enumerable
// take block of 100 out of parameters list

loop()
{
//runs multiple times
Enumerable objects = getObjects(block);
}

return objects;
//will only return last set of results

//objects
// take block of 100 out of parameters list

loop()
{
//runs multiple times
Enumerable objects = getObjects(block);
}

return objects;
//will only return last set of results

//objects
8 replies
CC#
Created by fatsuperman. on 8/22/2022 in #help
How to combine null coascence and ternary operator?
Thank you, you have given great answers.
19 replies
CC#
Created by fatsuperman. on 8/22/2022 in #help
How to combine null coascence and ternary operator?
It says I have to cast tfn @Pobiega
19 replies
CC#
Created by fatsuperman. on 8/22/2022 in #help
How to combine null coascence and ternary operator?
right now I have: variable == null ? " " : (bool)variable ? "YES" : "NO"
19 replies
CC#
Created by fatsuperman. on 8/22/2022 in #help
How to combine null coascence and ternary operator?
So i want to check if true false or null on 1 line
19 replies
CC#
Created by fatsuperman. on 8/22/2022 in #help
How to combine null coascence and ternary operator?
Yeah
19 replies