8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa47957 commit ff956e4Copy full SHA for ff956e4
src/runtime/BorrowedReference.cs
@@ -15,12 +15,6 @@ readonly ref struct BorrowedReference
15
public IntPtr DangerousGetAddress()
16
=> this.IsNull ? throw new NullReferenceException() : this.pointer;
17
18
- /// <summary>
19
- /// Gets a raw pointer to the Python object. Does not throw an exception
20
- /// if the pointer is null
21
- /// </summary>
22
- public IntPtr DangerousGetAddressUnchecked() => this.pointer;
23
-
24
/// <summary>
25
/// Creates new instance of <see cref="BorrowedReference"/> from raw pointer. Unsafe.
26
/// </summary>
0 commit comments