在C#中我可以這樣做:如何測試一個對象數組是否包含字符串?
public string[] MyStrings;
...
...
if(MyStrings.Contains("bob")) ...
在ObjectScript這是怎麼完成的?
隨着%ArrayOfObjects
類型我沒有看到正是我要找here
我曾嘗試:
#Dim MyStrings As %ArrayOfDataTypes
do MyStrings.SetAt("User","User")
do MyStrings.SetAt("Users","Users")
do MyStrings.SetAt("Group","Group")
do MyStrings.SetAt("Groups","Groups")
// if MyStrings contains Groups
if MyStrings.GetAt("Groups") '= ""
{
}
@Trisped - updated –
感謝您的更新。我刪除了我以前的評論。 – Trisped