C#でdefineを利用したい場合があると思います。
利用するには、下記のように定義して利用します。
※注意点としては、当該ファイルのみ有効で、プロジェクト全体では参照できません。
define サンプル
1 2 3 4 5 6 7 8 9 10 11 12 13 |
#define SAMPLE #define SAMPLE2 #if SAMPLE static public readonly string RESOURCE_PATH = @"Resources\sample\"; #elif SAMPLE2 static public readonly string RESOURCE_PATH = @"Resources\sample2\"; #else static public readonly string RESOURCE_PATH = @"Resources\main\"; #endif |