System.IO.IsolatedStorage.TestHelper.GetUserRootDirectory C# (CSharp) Méthode

GetUserRootDirectory() public static méthode

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