예제 #1
0
 public CodeBlockStatement()
 {
     Statements = new CodeStatements();
 }
예제 #2
0
 /// <summary>
 /// Returns an enumerator that iterates through the <see cref="ILSLReadOnlyCodeStatement"/>'s in the code scope.
 /// </summary>
 /// <returns>
 /// A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
 /// </returns>
 public IEnumerator <ILSLReadOnlyCodeStatement> GetEnumerator()
 {
     return(CodeStatements.GetEnumerator());
 }
예제 #3
0
 public CodeBlockStatement()
 {
   Statements = new CodeStatements();
 }