本文介绍了如何在C#语言中使用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

string localFilenamePath = My.Computer.FileSystem.SpecialDirectories.Temp + "/" + filename;





用C#语言替换上面的代码是什么?



谢谢



What is the Replacement of Above Code in C# Language?

Thanks

推荐答案

string sPath;
sPath = Path.GetTempPath();
Console.WriteLine("Temporary Path := " + sPath );





谢谢,

Imdadhusen



Thanks,
Imdadhusen


using Microsoft.VisualBasic.FileIO;





现在您已准备好使用 []。



问候,



Manfred



Now you are ready to use the SpecialDirectories Class[^] from your C# code.

Regards,

Manfred


这篇关于如何在C#语言中使用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-19 14:52