Missing .NET features in Metro style application?

后端 未结 4 691
谎友^
谎友^ 2021-02-07 05:03

Mostly out of curiosity, I started programming a small \"Metro Style\" project in Visual Studio 2011, the one that was released in Windows Developer Preview. It combines XAML fo

4条回答
  •  栀梦
    栀梦 (楼主)
    2021-02-07 05:32

    For "printf debugging", I suggest that you use Debug.WriteLine and/or Trace.WriteLine methods from System.Diagnostics namespace. They print to the debugger output window - in VS Express that comes in Developer Preview, you'll need to enable that first (Debug -> Windows -> Output).

    For Thread.Sleep, can you clarify the specific scenario for which you believe it to be needed?

提交回复
热议问题