Skip to content

UraniumTeam/uranium-backend-c-sharp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Uranium Backend Library

Is a library for profiling C# applications.

Usage

  1. Add Library to your project
  2. In the beginning of profiling functions insert this code
public static void SomeFunction()
{
    using var scope = ProfilerScope.Begin(nameof(SomeFunction));
    //Some code
}
  1. In Main function after all profiling function calls insert this code
public static void Main()
{
    //Some code
    SomeFunction();
    ProfilerInstance.Save();
}
  1. Build your application
  2. After this manipulations in current directory will create .UPS file
  3. To visualize call stacks you can use Uranium Studio

About

Library for profiling applications

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •  

Languages