[JEDI.NET-commits] docs/ndoc modifications ReflectionEngine.cs,NONE,1.1
Status: Pre-Alpha
Brought to you by:
jedi_mbe
From: Marcel B. <jed...@us...> - 2005-03-05 18:40:41
|
Update of /cvsroot/jedidotnet/docs/ndoc modifications In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27713/docs/ndoc modifications Added Files: ReflectionEngine.cs Log Message: Changes to rev. 1.35 --- NEW FILE: ReflectionEngine.cs --- // Copyright (C) 2001 Kral Ferch, Jason Diamond // Parts Copyright (C) 2004 Kevin Downs // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation; either version 2 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA using System; using System.Collections; [...3867 lines suppressed...] } private class ImplementsCollection { private Hashtable data; public ImplementsCollection() { data = new Hashtable(15); // give it an initial capacity... } public ImplementsInfo this[string name] { get { return (ImplementsInfo)data[name]; } set { data[name] = value; } } } #endregion } } |