zoukankan      html  css  js  c++  java
  • .NET中三种获取当前路径的代码,经常用到的Web变成,WinForm编程,Windows Mobile 编程

  •  .NET中三种获取当前路径的代码,经常用到的Web变成,WinForm编程,Windows Mobile 编程
  • //Web编程
  • HttpContext.Current.Server.MapPath("FileName")
  • System.Web.HttpContext.Current.Request.Path
  • //Windows编程
  • System.Environment.CurrentDirectory
  • //Mobile编程
  • Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase); 
查看全文
  • 相关阅读:
    【题解】【神奇校内POIN模拟赛】小凯的疑惑
    【题解】【CF670C】cinema
    11 Remove Duplicates from Sorted Array II
    10 3SumClosest
    7 Container With Most Water
    8 String to Integer (atoi)
    9 3Sum
    6 Palindrome Number
    5 Zigzag Conversion
    4 Longest Palindromic Substring
  • 原文地址:https://www.cnblogs.com/millen/p/1500302.html
  • Copyright © 2011-2022 走看看