「abc;def;ghi」のような値を含むSharePointサイトのユーザープロファイルにResponsibilityという名前のフィールドがあります。これらの値を配列に読み込みたい。[propertyconstants.responsibility] .valueを使用している場合、abcのみが読み取られます。abc、def、ghiを別々に読む方法は?
私のコードは次のとおりです。
string xpUser = up[PropertyConstants.Responsibility].Value.ToString();
string[] expUser = xpUser.Split(';');