コード例 #1
0
 internal Try(SyncTryFrames frames)
 {
     _frames = frames;
 }
コード例 #2
0
        internal Try(Func <T> action)
        {
            var frame = new SyncTryFrame(TryFrameType.Action, _ => action(), null);

            _frames = SyncTryFrames.Empty.Add(frame);
        }