mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2025-06-27 05:23:13 +00:00
VarList
This commit is contained in:
@ -8,7 +8,7 @@ using System.Text;
|
||||
|
||||
namespace Esiur.Data
|
||||
{
|
||||
public class VarList<T> : IEnumerable<T>, ICollection, ICollection<T>
|
||||
public class VarList<T> : IEnumerable<T>, ICollection, ICollection<T>
|
||||
{
|
||||
string propertyName;
|
||||
IResource resource;
|
||||
@ -21,6 +21,11 @@ namespace Esiur.Data
|
||||
this.propertyName = propertyName;
|
||||
}
|
||||
|
||||
public VarList()
|
||||
{
|
||||
Console.WriteLine("New varlist");
|
||||
}
|
||||
|
||||
public int Count => list.Count;
|
||||
|
||||
public bool IsReadOnly => false;
|
||||
|
Reference in New Issue
Block a user