Генерация кода для геттеров и сеттеров свойств и индексаторов

This commit is contained in:
2025-03-07 15:46:22 +03:00
parent 8d082d1ed4
commit 593a8b0635
3 changed files with 120 additions and 70 deletions
+1
View File
@@ -8,6 +8,7 @@ namespace Example.Shared
public interface IDataList<T> : IShared, IDisposable
{
IReadOnlyList<T> Collection { get; }
T this[int index] { get; set; }
T Get(int index);
void Add(T item);
void Remove(int index, T item);