System.Security.PolicyManager._DebugOut C# (CSharp) Method

_DebugOut() private method

private _DebugOut ( String file, String message ) : int
file String
message String
return int
        internal static extern int _DebugOut(String file, String message);
#endif

Usage Example

        private static void DEBUG_OUT(String str)
        {
#if _DEBUG
            if (debug)
            {
                if (to_file)
                {
                    PolicyManager._DebugOut(file, str + "\n");
                }
                else
                {
                    Console.WriteLine(str);
                }
            }
#endif
        }
All Usage Examples Of System.Security.PolicyManager::_DebugOut