interpreter_namespaces

現在のインタプリタに登録されている名前空間名を列挙します。


taiseiue | 2021-11-19

定義

名前空間: Alice.Interpreter
アセンブリ: Losetta.dll
ソースコード: Alice.Interpreter.cs

interpreter_namespaces()

現在のインタプリタに登録されている名前空間名を列挙します。

AliceScript
namespace Alice.Interpreter;
public string[] interpreter_namespaces();
戻り値
string[] 現在のインタプリタに登録されている名前空間の名前を含む配列。

対応
AliceScript RC1、RC2、GM、2.0、2.1、2.2、2.3、3.0
AliceSister GM、2.0、2.1、2.2、2.3、3.0
Losetta 0.8、0.9、0.10

次の例では、現在のインタプリタに登録されている名前空間名を取得します。

AliceScript
using Alice.Interpreter;

var ns = interpreter_namespaces();