Example #1
0
        public void DelegateWithOptional()
        {
            var f = new FuncWithOptional(x => x);

            Equal(f(3), 3);
            Equal(f(), 5);
        }
Example #2
0
 public void DelegateWithOptional()
 {
     var f = new FuncWithOptional(x => x);
     Equal(f(3), 3);
     Equal(f(), 5);
 }