You need curly braces because you have a compound statement for the if and else bodies.
if (PromoPeriodEnd >= day)
{
AmountToAccrue = 0;
BillingDescription = "Subscription 30-day Promotional Period";
}
else
{
AmountToAccrue = subscription.Amount * ProratedPercentDue;
BillingDescription = "Subscription Fee";
}
The next statement after an if condition is what gets executed if the condition is true. This can either be one statement, or a compound statement (a series of statements enclosed in curly braces).
Because you don't have curly braces, it is interpreting it as:
if (PromoPeriodEnd >= day)
AmountToAccrue = 0; // This is the body of the if
// this is outside of the if
BillingDescription = "Subscription 30-day Promotional Period";
// this token makes no sense here because it is not after the if body.
else
AmountToAccrue = subscription.Amount * ProratedPercentDue;
BillingDescription = "Subscription Fee";
This is actually why many coding standards recommend always using curly braces with control statements, so that if it is changed from a one-statement body to a compound statement body later, this type of error won't arise.