예제 #1
0
파일: Block.cs 프로젝트: richardbang83/GNet
 public bool EndsWith <T>() where T : Statement
 {
     return(!IsEmpty && (Statements.EndsWith <T>() ||
                         (LastStatement is Block && ((Block)LastStatement).EndsWith <T>())));
 }