예제 #1
0
파일: Utokens.cs 프로젝트: kevlyons/Sarcasm
        public static InsertedUtokens SetPriority(this UtokenInsert utoken, double priority)
        {
            InsertedUtokens insertedUtokens = utoken;

            insertedUtokens.Priority = priority;
            return(insertedUtokens);
        }
예제 #2
0
파일: Utokens.cs 프로젝트: kevlyons/Sarcasm
        public static InsertedUtokens SetBehavior(this UtokenInsert utoken, Behavior behavior)
        {
            InsertedUtokens insertedUtokens = utoken;

            insertedUtokens.Behavior = behavior;
            return(insertedUtokens);
        }
예제 #3
0
파일: Utokens.cs 프로젝트: kevlyons/Sarcasm
 public InsertedUtokens(UtokenInsert utoken)
     : this(priorityDefault, behaviorDefault, new UtokenInsert[] { utoken })
 {
 }