UnityEngine.DebugLogHandler.Internal_LogException C# (CSharp) 메소드

Internal_LogException() 개인적인 메소드

private Internal_LogException ( Exception exception, [ obj ) : void
exception System.Exception
obj [
리턴 void
        internal static extern void Internal_LogException(Exception exception, [Writable] UnityEngine.Object obj);
        public void LogException(Exception exception, UnityEngine.Object context)

Usage Example

예제 #1
0
        public void LogException(Exception exception, Object context)
        {
            bool flag = exception == null;

            if (flag)
            {
                throw new ArgumentNullException("exception");
            }
            DebugLogHandler.Internal_LogException(exception, context);
        }
All Usage Examples Of UnityEngine.DebugLogHandler::Internal_LogException