-
I am working on a montage project, where the user provides an arbitrary list of image files as command line parameters to a console app, which arranges the images in m x n tiles, extending the list by a blurred version of the last image if needed. My attempt so far is something like
but already the first line of this code is rejected by the compiler complaining that the delegate type cannot be derived. I guess that there is something essentially wrong with the way I address the last image in the list, but I couldn't find much examples working with image list, especially no example that picks a picture from a list. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
You are missing |
Beta Was this translation helpful? Give feedback.
You are missing
()
for theClone
method. It should beClone()
instead.