Skip to content

Instantly share code, notes, and snippets.

@CH3COOH
Created January 30, 2012 16:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CH3COOH/1705396 to your computer and use it in GitHub Desktop.
Save CH3COOH/1705396 to your computer and use it in GitHub Desktop.
コードの最適化
using Microsoft.Phone.Controls;
namespace PhoneApp1 {
public partial class MainPage : PhoneApplicationPage {
// コンストラクター
public MainPage() {
InitializeComponent();
// コードの最適化が有効になっている場合は、
// このhogeは無かったものとして扱われる
// 一度、デバッグ実行してカーソルを当ててみてください
int hoge = 9;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment