System.IO.IsolatedStorage.TestHelper.GetUserRootDirectory C# (CSharp) Method

GetUserRootDirectory() public static method

Where the user's files go
public static GetUserRootDirectory ( this isf ) : string
isf this
return string
        public static string GetUserRootDirectory(this IsolatedStorageFile isf)
        {
            // CoreFX and NetFX use the same internal property
            return (string)s_rootDirectoryProperty.GetValue(isf);
        }