Home »
.Net »
C# Programs
C# program to get the current stack trace information using Environment class
Here, we are going to learn how to get the current stack trace information using Environment class in C#.Net?
Submitted by Nidhi, on April 23, 2021
To get current stack trace information using the Environment class – we use the StackTrace property. This property returns a string value that contains current stack trace information.
Syntax:
string Environment.StackTrace
Program:
The source code to get the current stack trace information using Environment class is given below. The given program is compiled and executed successfully.
using System;
class Sample
{
//Entry point of Program
static public void Main()
{
string StackTrace = "";
StackTrace = Environment.StackTrace;
Console.WriteLine("Current Stack Trace Information: \n"+StackTrace);
}
}
Output:
Current Stack Trace Information:
at System.Environment.GetStackTrace(Exception e, Boolean needFileInfo)
at System.Environment.get_StackTrace()
at Sample.Main() in C:\Users\Arvind\documents\visual studio 2010\Projects\Con
soleApplication1\ConsoleApplication1\Program.cs:line 10
Press any key to continue . . .
C# Environment Class Programs »