IsValid() static private method

static private IsValid ( Playable playable ) : bool
playable Playable
return bool
Ejemplo n.º 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));
Ejemplo n.º 2
0
 public unsafe bool IsValid()
 {
     return(Playables.IsValid(*((Playable *)this)));
 }
Ejemplo n.º 3
0
 public bool IsValid()
 {
     return(Playables.IsValid(this));
 }