PathStructure.Length
PathStructure.Length property
हो जाता हैOSTypeStructure
बाइट्स में लंबाई.
public override int Length { get; }
उदाहरण
निम्न कोड पथ संरचना संरचना के साथ फ़ाइल लोड करने की क्षमता प्रदर्शित करता है।
[C#]
string srcFile = "shirt-color.psd";
string output = "output.psd";
using (PsdImage image = (PsdImage)Image.Load(srcFile))
{
image.Save(output);
}