Skip to content

Instantly share code, notes, and snippets.

@solster
solster / ObjectToDictionary.cs
Created February 24, 2017 20:32
Converts an object to a string/string dictionary
public static IDictionary<String, String> ToDictionary(this object graph)
{
return graph.GetType().GetProperties().ToDictionary(prop => prop.Name, prop => prop.GetGetMethod().Invoke(graph, null)?.ToString() ?? String.Empty);
}
@solster
solster / AzureImageCompression.cs
Last active September 17, 2017 04:17
Azure Web Job for Compression Images
namespace Solster.Azure.WebJob.Compression
{
using Microsoft.Azure.WebJobs;
using System.IO;
using System.Drawing.Imaging;
using System.Linq;
using System.Drawing;
class Program
{