System.Xml.XmlBufferReader.GetUInt64 C# (CSharp) Méthode

GetUInt64() public méthode

public GetUInt64 ( int offset ) : ulong
offset int
Résultat ulong
        public ulong GetUInt64(int offset)
        {
            return (ulong)GetInt64(offset);
        }

Usage Example

Exemple #1
0
 private ulong GetUInt64()
 {
     DiagnosticUtility.DebugAssert(_type == ValueHandleType.UInt64, "");
     return(_bufferReader.GetUInt64(_offset));
 }
All Usage Examples Of System.Xml.XmlBufferReader::GetUInt64