Microsoft SDK for Java

combineArraysOfStrings

This method of the PermissionUtils Class copies two arrays of strings into a new list. The strings in list1 are copied first into the new list, followed by the strings in list2.

Syntax

public static String[] combineArraysOfStrings(String[] list1, String[] list2);



Return Value

Returns a new list containing copies of the strings in list1, followed by copies of the strings in list2.

Parameters

list1 The first list of strings, or null.
list2 The second list of strings, or null.

© 1999 Microsoft Corporation. All rights reserved. Terms of use.