Skip to content

Instantly share code, notes, and snippets.

@tmr232
Created January 31, 2016 11:57
Show Gist options
  • Save tmr232/513d81917dea12686832 to your computer and use it in GitHub Desktop.
Save tmr232/513d81917dea12686832 to your computer and use it in GitHub Desktop.
Debug prints in C#
// `using` directives
using System.Runtime.CompilerServices;
// Actual code
public static string GetLocation(
[CallerFilePath] string filePath = null,
[CallerLineNumber] int lineNumber = 0,
[CallerMemberName] string caller = null)
{
return $"{filePath}:{lineNumber} {caller}";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment