0
如何將#define試用版更改爲#define PREMIUM,例如當用戶輸入某個註冊碼時。如何更改#define
謝謝。
//#define TRIAL
#define PREMIUM
using System;
using System.Diagnostics;
using System.Reflection;
namespace Attributes
{
[Obsolete("This is an old class. Use new class instead!")]
class Test
{
[Conditional("TRIAL")]
void Trial()
{
Console.WriteLine("Trial");
}
[Conditional("PREMIUM")]
void Release()
{
Console.WriteLine("PREMIUM");
}
......................................