2
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#(WPF)アプリのスタックサイズの変更方法

Last updated at Posted at 2017-07-11

C++ではリンカーオプションでスタックサイズの指定ができた。
今回、C#アプリを開発していてスタックサイズを変更しないといけない状態になったので、調べてみた。

editbin.exeを使った方法を紹介する。

【editbin.exeの場所】※環境に応じて読み換えてください
C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\VC\Tools\MSVC\14.10.25017\bin\HostX86\x86\editbin.exe

無い人は、インストール時に「C++ によるデスクトップ開発」をチェックして再インストール
そもそも、VisualStudioをインストールしていない人は、インストールしてください

【使い方】
"C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\VC\Tools\MSVC\14.10.25017\bin\HostX86\x86\editbin.exe" "targetApplication.exe" /STACK:4194304
4194304⇒4MB


スタックサイズが変更されたことの確認方法
C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\VC\Tools\MSVC\14.10.25017\bin\HostX86\x86\dumpbin.exe

呼び方
"C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\VC\Tools\MSVC\14.10.25017\bin\HostX86\x86\dumpbin.exe"
/HEADERS "targetApplication.exe"

2
6
0

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
2
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?