DisconnectInternal() 정적인 개인적인 메소드

static private DisconnectInternal ( Playable &target, int inputPort ) : void
target Playable
inputPort int
리턴 void
예제 #1
0
 public static void Disconnect(Playable target, int inputPort)
 {
     if (target.CheckInputBounds(inputPort))
     {
         Playables.DisconnectInternal(ref target, inputPort);
     }
 }