29 lines
597 B
C#
29 lines
597 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace DataStructures.TransposeListSpaceS
|
|||
|
{
|
|||
|
public class TransposeList<T> : IEnumerable<T>
|
|||
|
{
|
|||
|
private List<T> list = new List<T>();
|
|||
|
|
|||
|
T Get(T element)
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
public IEnumerator<T> GetEnumerator()
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
|
|||
|
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator()
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|