DelphiSets.cs

Top  Previous  Next

Pretranslated C# code > Delphi RTL/VCL > DelphiSets.cs

DelphiSets.cs is part of the C# version of the Delphi RTL and contains the class TSet to simulate Delphi sets.The public members of this class are listed below:

 

 

public class TSet : IEnumerable

 

public TSet()

public TSet(TSet OtherSet)

public bool this[int index]

public TSet Clear()

public void Include(int Index)

public static TSet operator <<(TSet ImpliedObject, int Index)

public void Exclude(int Index)

public static TSet operator >>(TSet ImpliedObject, int Index)

public bool Empty()

public bool Contains(int Index)

public static TSet operator +(TSet ImpliedObject, TSet AddSet)

public static TSet operator -(TSet ImpliedObject, TSet SubSet)

public static TSet operator *(TSet ImpliedObject, TSet MulSet)

public static bool operator ==(TSet ImpliedObject, TSet CmpSet)

public static bool operator !=(TSet ImpliedObject, TSet CmpSet)

public static bool operator <=(TSet ImpliedObject, TSet CmpSet)

public static bool operator >=(TSet ImpliedObject, TSet CmpSet)

public override int GetHashCode()

public override bool Equals(object other)

public IEnumerator GetEnumerator()

 

 



This page belongs to the Delphi2C# Documentation

Delphi2C# home  Content