PeerCastStation.MKV.VInt.CheckLength C# (CSharp) Method

CheckLength() private static method

private static CheckLength ( int v ) : int
v int
return int
    private static int CheckLength(int v)
    {
      try {
        return Enumerable.Range(0, 8).First(i => ((1<<(7-i)) & v)!=0)+1;
      }
      catch (InvalidOperationException) {
        throw new BadDataException();
      }
    }
  }