2sic / razor-blade

A pretty awesome library to make work in Razor easier and more productive
MIT License
6 stars 2 forks source link

Adding tag-contents from IEnumerables fails #8

Closed iJungleboy closed 3 years ago

iJungleboy commented 3 years ago

This works

Tag.Div("a", "b", "c");
var values = new string[] { "a", "b", "c" };
Tag.Div(values);

This doesn't

var values = new List<string>() { "a", "b", "c" };
Tag.Div(values);

it should ;)