boutique replica bags up ideas

the best replique rolex and prices here.

julia highlight 99j hair color 10a quality straight human hair lace front wigs 8 - 24 inches pre plucked hairline 13x4 inches lace front brazilian wig onlinefor sale

Get the .NET Framework Directory path using C#

Updated on     Kisan Patel

To get the full path to the folder that the current version of .NET, you nee to use the GetRuntimeDirectoryRuntimeDirectory method (implemented in System.Runtime.InteropServices.RuntimeEnvironment).

class Program
{
    static void Main(string[] args)
    {

        Console.WriteLine("path of the current version of .NET: \n" + System.Runtime.InteropServices.RuntimeEnvironment.GetRuntimeDirectory());   
        Console.ReadKey();
    }
}

Output of the above program…

current-dot-net-version-path


C#

Leave a Reply