Castle.ActiveRecord.DictionaryAdapter.Entry.Entry C# (CSharp) Méthode

Entry() public méthode

Initializes a new instance of the Entry class.
public Entry ( String key, int index ) : System
key String The key.
index int The index.
Résultat System
            public Entry(String key, int index)
            {
                this.key = key;
                this.index = index;
            }
DictionaryAdapter.Entry