Skip to content

Instantly share code, notes, and snippets.

@AndyA13
AndyA13 / gist:147f079cf7d69c55038d
Last active May 15, 2019 13:04
Example Uri properties
public class Program
{
public static void Main(string[] args)
{
Uri pageUri = new Uri("https://www.example.com/folder/page.aspx?query=1&sample=2#anchor");
Uri simpleUri = new Uri("http://www.example.com/folder");
Console.WriteLine("Uri Properties:");
Console.WriteLine();
@AndyA13
AndyA13 / gist:3859427
Last active October 11, 2015 12:28
To comma seperated list
private string ToCommaSeperatedString<T>(IEnumerable<T> items, Func<T, string> property)
{
if (items != null && items.Count() > 0)
{
List<string> values = new List<string>();
foreach (T item in items)
{
values.Add(property.Invoke(item));
}