FileGenerator.MagickScript.ScriptCodeGenerator.WriteGetElementValue C# (CSharp) Method

WriteGetElementValue() protected method

protected WriteGetElementValue ( string typeName, string attributeName ) : void
typeName string
attributeName string
return void
    protected void WriteGetElementValue(string typeName, string attributeName)
    {
      Write("Variables.GetValue<");
      Write(typeName);
      Write(">(element, \"");
      Write(attributeName);
      WriteLine("\");");
    }