C_Sharp/Debug View 사용

  1. static public void DebugOut(string msg)
  2. {
  3.     StackTrace st = new StackTrace(false);
  4.     string caller = st.GetFrame(1).GetMethod().Name;
  5.     Debug.WriteLine(caller + ": " + msg);
  6. }

이 글에는 0 개의 댓글이 있습니다.