Realms.ListHandle.Clear C# (CSharp) Method

Clear() public method

public Clear ( ) : void
return void
        public void Clear()
        {
            NativeException nativeException;
            NativeMethods.clear(this, out nativeException);
            nativeException.ThrowIfNecessary();
        }

Usage Example

コード例 #1
0
ファイル: RealmList.cs プロジェクト: CarsonC01/realm-dotnet
 public void Clear()
 {
     _listHandle.Clear();
 }
All Usage Examples Of Realms.ListHandle::Clear