Skip to main content

Using Statements

Evolve can reference namespaces with at using statement that functions identically to C#'s using statement

using System.Collectsion.Generic;

template UsingNameSpaceExample render {

// without the using statement, the compiler would not be able to find the List type
state List<string> strings = new List<strings>();

Text(strings.Count);

}