Skip to content

Instantly share code, notes, and snippets.

@kiyokura
Created October 30, 2013 15:10
Show Gist options
  • Save kiyokura/7234258 to your computer and use it in GitHub Desktop.
Save kiyokura/7234258 to your computer and use it in GitHub Desktop.
protected void Page_PreInit(object sender, EventArgs e)
{
System.Diagnostics.Debug.Assert(false, "Debug.Assertしてみた(Assert失敗)");
System.Diagnostics.Debug.Write("Debug.Writeしてみた");
System.Diagnostics.Trace.TraceInformation("System.Diagnostics.Trace.TraceInformationしてみた");
System.Diagnostics.Trace.TraceWarning("System.Diagnostics.Trace.TraceWarningしてみた");
System.Diagnostics.Trace.TraceError("System.Diagnostics.Trace.TraceErrorしてみた");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment