System.Exception.GetMessageFromNativeResources C# (CSharp) 메소드

GetMessageFromNativeResources() 개인적인 메소드

private GetMessageFromNativeResources ( ExceptionMessageKind kind ) : String
kind ExceptionMessageKind
리턴 String
        internal static extern String GetMessageFromNativeResources(ExceptionMessageKind kind);
    }

Usage Example

        internal static string GetMessageFromNativeResources(Exception.ExceptionMessageKind kind)
        {
            string result = null;

            Exception.GetMessageFromNativeResources(kind, JitHelpers.GetStringHandleOnStack(ref result));
            return(result);
        }
All Usage Examples Of System.Exception::GetMessageFromNativeResources