0

问题

我正在开发一个UWP通用 Windows 平台)应用程序,作为测试我包括

Debug.WriteLine("Hello World!");方法,但在输出中未显示在方法中输入的文本。

问题

该方法是否被我错误地集成到 UWP 应用程序中?

源代码

using System;
using System.Diagnostics;
using Windows.System;
using Windows.UI.ViewManagement;
using Windows.UI.Xaml.Controls;

// The Blank Page item template is documented at https://go.microsoft.com/fwlink/?LinkId=402352&clcid=0x409

namespace UwpApplication1
{
    /// <summary>
    ///     An empty page that can be used on its own or navigated to within a Frame.
    /// </summary>
    public sealed partial class MainPage : Page
    {
        public MainPage()
        {
            
            Debug.WriteLine("Hello World! - Debug.Writeline() Test");

        }
    }
}
4

1 回答 1

0

如果您希望在 Visual Studio 输出而不是 UWP 应用程序中显示“ Hello, World ”,您只需编写Console.WriteLine()而不是Debug.WriteLine().

如果您希望它显示在 UWP 应用程序中,请创建一个文本块(无代码)。在调试中写入“Hello, World!”只会在输出中显示用户在实际应用中看不到的注释。

如果您想要控制台输出,只需输入Console.WriteLine().

于 2021-03-13T16:15:09.300 回答