tlang-interperter-cs/tlanglib/TArray.cs

15 lines
272 B
C#
Raw Normal View History

2023-03-10 10:12:36 +00:00
using System.Collections.Generic;
2023-03-09 19:40:14 +00:00
namespace tlang
{
public class TArray : TObject
{
2023-03-09 23:57:16 +00:00
public override bool AsBoolean => Items.Count > 0;
2023-03-09 19:40:14 +00:00
public TArray()
{
}
public List<TObject> Items {get;set;}=new List<TObject>();
}
}