Is there any way of decorating a method in .NET with an attribute which would mean the method will be executed in other thread?
I have a lot of methods that I would like to execute in other thread but I don't want to recode them again, an attribute would let me choose from sync, to async smoothly. Any ideas or workaround?
thanks.