| Visual Basic (Declaration) | |
|---|---|
Public Enum StorageType Inherits System.Enum | |
| C# | |
|---|---|
public enum StorageType : System.Enum | |
| Member | Description |
|---|---|
| Custom | Uses a custom data store, (Set by setting the StorageSystem property) |
| Disk | Uses a file to store data, (Set by setting the FileName property) |
| Memory | Uses in-memory storage |
BPlusTree/BPlusTree.Test/TestCustomStorage.cs
| C# | Copy Code |
|---|---|
BPlusTreeOptions<int, string> options = Options; Assert.AreEqual(StorageType.Custom, options.StorageType); | |
| VB.NET | Copy Code |
|---|---|
Dim options As BPlusTreeOptions(Of Integer, String) = Options Assert.AreEqual(StorageType.[Custom], options.StorageType) | |
System.Object
System.ValueType
System.Enum
CSharpTest.Net.Collections.StorageType
Target Platforms: Windows XP, Windows Server 2003, Windows Vista, Windows Server 2008, Windows 7