IsValid() статический приватный Метод

static private IsValid ( Playable playable ) : bool
playable Playable
Результат bool
Пример #1
0
 /// <summary>
 /// <para>Returns true if the Playable is valid. A playable can be invalid if it was disposed. This is different from a Null playable..</para>
 /// </summary>
 public unsafe bool IsValid() =>
 Playables.IsValid(*((Playable *)this));
Пример #2
0
 public unsafe bool IsValid()
 {
     return(Playables.IsValid(*((Playable *)this)));
 }
Пример #3
0
 public bool IsValid()
 {
     return(Playables.IsValid(this));
 }