Skip to content

Instantly share code, notes, and snippets.

@hecres
Created March 3, 2018 10:32
Show Gist options
  • Select an option

  • Save hecres/3aa1d2fc867125cf78b8e8be8e135877 to your computer and use it in GitHub Desktop.

Select an option

Save hecres/3aa1d2fc867125cf78b8e8be8e135877 to your computer and use it in GitHub Desktop.
ExceptionDispatchInfoによる例外の再スロー処理
using System;
using System.Runtime.ExceptionServices;
public void Rethrow(Exception exception)
{
ExceptionDispatchInfo.Capture(exception).Throw();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment