Answers for "what is the extension of c# file"

C#
1

c# get file extension

string myFilePath = @"C:MyFile.txt";
string ext = Path.GetExtension(myFilePath);
// ext would be ".txt"
Posted by: Guest on August-11-2020
0

HOW TO CALL AN EXTENSION METHOD FOR VIEW C#

<pages>
  <namespaces>
    <add namespace="System.Web.Mvc" />
    <add namespace="System.Web.Mvc.Ajax" />
    <add namespace="System.Web.Mvc.Html" />
    <add namespace="System.Web.Routing" />
    <add namespace="System.Linq" />
    <add namespace="System.Collections.Generic" />

    <add namespace="MyProject.Extensions" />
  </namespaces>
</pages>
Posted by: Guest on October-13-2020

Code answers related to "what is the extension of c# file"

C# Answers by Framework

Browse Popular Code Answers by Language