代码搜索:Generics

找到约 1,477 项符合「Generics」的源代码

代码结果 1,477
www.eeworm.com/read/249894/12448504

cs testrtree.cs

using System; using Perst; using System.Diagnostics; class SpatialObject : Persistent { public Rectangle rect; } public class TestRtree : Persistent { #if USE_GENERICS SpatialI
www.eeworm.com/read/249894/12448768

cs ipcountry.cs

using System; using Perst; using System.IO; /** * Get country for IP address using PATRICIA Trie. */ public class IpCountry { const int PagePoolSize = 32*1024*1024; class Root
www.eeworm.com/read/249894/12448857

cs testsod.cs

using Perst; using System; using System.Collections; public class Supplier : Persistent { public String name; public String location; #if USE_GENERICS public Relation
www.eeworm.com/read/249894/12463062

cs ibidirectionalenumerator.cs

using System; #if USE_GENERICS using System.Collections.Generic; #else using System.Collections; #endif namespace Perst { /// /// Enumerator for moving in both directions
www.eeworm.com/read/249894/12463071

cs versionhistory.cs

namespace Perst { using System; using System.Diagnostics; #if USE_GENERICS using System.Collections.Generic; #endif using System.Collections; /// Collection
www.eeworm.com/read/249894/12463078

cs bitindex.cs

namespace Perst { using System; #if USE_GENERICS using System.Collections.Generic; #else using System.Collections; #endif /// /// Interface of bit index.
www.eeworm.com/read/249894/12463079

cs relation.cs

namespace Perst { using System; #if USE_GENERICS using System.Collections.Generic; #else using System.Collections; #endif /// Class representing relation between ow
www.eeworm.com/read/249894/12463137

cs ipersistentmap.cs

using System; #if USE_GENERICS using System.Collections.Generic; #else using System.Collections; #endif namespace Perst { /// /// Interface for scalable map. It can efficie
www.eeworm.com/read/249894/12463155

cs projection.cs

namespace Perst { using System; #if USE_GENERICS using System.Collections.Generic; #endif using System.Collections; using System.Reflection; /// /// Class
www.eeworm.com/read/249894/12463169

cs sortedcollection.cs

namespace Perst { using System; #if USE_GENERICS using System.Collections.Generic; #else using System.Collections; #endif /// /// Range boundary kind //