6
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

C++/CX: Visual Studio 2013(Windows 8.1) でコンソールアプリを作るおそらく最も簡単な方法

6
Last updated at Posted at 2013-12-06

メニュー: 拡張機能と更新プログラム > オンライン から
CxxWinRTTemplate for Windows 8.1 をインストールする。
CxxWinRTTemplate

これにより、"新しいプロジェクトの追加" に CxxWinRTTemplate が現れる。
CxxWinRTTemplate

このテンプレートで生成される Source.cpp はこんな。

Source.cpp
// Source.cpp : Defines the entry point for the console application.
//

# include <iostream>
using namespace std;

using namespace Platform;


int main(Platform::Array<Platform::String^>^ args)
{
        Platform::Details::Console::WriteLine("Hello World");
        return 0;
}
6
6
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?