using System;
using System.Collections.Generic;
public class Program
{
public static void Main()
var foo = new Foo();
Console.WriteLine(foo.Bar.Value);
}
public class Foo {
public Guid? Bar { get; set; }