7 search resultsShowing 1~7 results

Stocked
winks_cthugha

@winks_cthugha

ボックス化とボックス解除

ボックス化は値型を参照型objectのメンバにして参照型として扱えるようにすること ボックス化解除はボックス化で生まれた参照型objectのメンバのコピーを取り出すこと 値型を参照型で扱う必要が...

3
3
Comment0
winks_cthugha

@winks_cthugha

#ifとConditional

デバッグ用の関数は#ifで中身を全部囲うよりも、 デバッグ用の関数にConditional属性をつけた方が、 関数呼び出し自体がされなくなる分パフォーマンスがいいらしい。 private voi...

17
16
Comment0
winks_cthugha

@winks_cthugha

キャストとas

C#の型変換はキャストかasの2つの方法がある キャスト データクラスから別のデータクラス等への明示的な変換の場合に使う public class Minute { public int val...

4
4
Comment0
winks_cthugha

@winks_cthugha

constとreadonly

C#の定数は コンパイル時定数と実行時定数の2つある コンパイル時定数 private const int hoge = 1; 実行時定数 private readonly int hogeho...

7
6
Comment0
winks_cthugha

@winks_cthugha

C#のプロパティ

C#はメンバ変数の代わりにプロパティを定義しやすくするために、プロパティの自動実装機能が追加されているので、publicメンバ変数は定義するべきではなく、独自のget関数やset関数を用意するこ...

3
3
Comment2
winks_cthugha

@winks_cthugha

CRIのawbとacb

awb HCAをまとめたもの acb awbに含まれているHCAをどのように鳴らすのかというデータをまとめたもの aisacもこのデータに含まれる 例) awb XXX,YYY acb 1:XX...

3
1
Comment0

7 search resultsShowing 1~7 results

Qiita is a knowledge sharing service for engineers.

  1. You can follow users and tags
  2. You can stock useful information
  3. You can make edit suggestions for articles
Functions that can be used after logging in