FireandForget delegate - c#
- by uno
I came across this link, link text
In the article, where the author has definition of this method
static void WriteIt(string first, string second, int num)
I changed that in my test app to this
static void WriteIt(CustomerObject Customer)
{
fileIO.CreateFile(XMLUtil.Serialize(Customer));
}
Where
public static string Serialize(object o)
…