System.Security.PermissionSetCollection.CopyTo C# (CSharp) Method

CopyTo() public method

public CopyTo ( PermissionSet array, int index ) : void
array PermissionSet
index int
return void
		public void CopyTo (PermissionSet[] array, int index)
		{
			// this is the "real thing"
			throw new NotSupportedException ();
		}

Usage Example

		public void CopyTo ()
		{
			PermissionSetCollection psc = new PermissionSetCollection ();
			psc.CopyTo (null, 0);
		}