Baku.LibqiDotNet.QiValue.GetKeys C# (CSharp) Method

GetKeys() public method

連想配列のキー一覧を取得します。
public GetKeys ( ) : QiValue
return QiValue
        public QiValue GetKeys()
        {
            if (ContentValueKind != QiValueKind.QiMap)
            {
                throw new InvalidOperationException("This QiValue is not QiMap");
            }
            return QiApiValue.KeysMap(NonDynamicValue);
        }