Gets the unsigned integer value associated with this object.
Syntax
| Visual Basic (Declaration) | |
|---|
Public ReadOnly Property Value As Long |
| Visual Basic (Usage) | Copy Code |
|---|
Dim instance As UInteger
Dim value As Long
value = instance.Value |
| C# | |
|---|
public long Value {get;} |
| Managed Extensions for C++ | |
|---|
public: __property long get_Value(); |
| C++/CLI | |
|---|
public:
property int64 Value {
int64 get();
} |
Property Value
Returns the value assigned to the object at the time it was initialized. An Int64 is returned because UInt32 is not CLS-compliant.
Remarks
Requirements
Target Platforms: Microsoft .NET Framework 2.0
See Also