UnityEngine.DebugLogHandler.Internal_LogException C# (CSharp) Method

Internal_LogException() private method

private Internal_LogException ( Exception exception, [ obj ) : void
exception System.Exception
obj [
return 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