kOS.Safe.Persistence.VolumePath.FromString C# (CSharp) Method

FromString() public static method

public static FromString ( string pathString ) : VolumePath
pathString string
return VolumePath
        public static VolumePath FromString(string pathString)
        {
            return new VolumePath(GetSegmentsFromString(pathString));
        }

Same methods

VolumePath::FromString ( string pathString, VolumePath basePath ) : VolumePath

Usage Example

Beispiel #1
0
        public VolumeItem(Volume volume, VolumePath parentPath, String name)
        {
            Volume = volume;
            Path   = VolumePath.FromString(name, parentPath);

            InitializeSuffixes();
        }
All Usage Examples Of kOS.Safe.Persistence.VolumePath::FromString