csharp Util C#
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp Util C#相关的知识,希望对你有一定的参考价值。
private async void sleepAsync()
{
await Task.Delay(5 * 1000);
}
DateTime startDt = DateTime.Now;
//
// 何かの処理
//
DateTime endDt = DateTime.Now;
TimeSpan ts = endDt - startDt;
Debug.WriteLine(ts.TotalMinutes);
Debug.WriteLine(ts.TotalSeconds);
Debug.WriteLine(ts.TotalMilliseconds);
// http://hensa40.cutegirl.jp/archives/722
// https://dobon.net/vb/dotnet/system/stopwatch.html
// ストップウォッチ
const int callerFrameIndex1 = 1; // 1つ前の呼び出し元メソッド名.
System.Diagnostics.StackFrame callerFrame1 = new System.Diagnostics.StackFrame(callerFrameIndex1);
System.Reflection.MethodBase callerMethod1 = callerFrame1.GetMethod();
log += " kamo class " + callerMethod1?.DeclaringType.Name;
log += " kamo method " + callerMethod1?.Name;
// 全てのトレース
string trace = Environment.StackTrace;
Console.WriteLine(trace);
// 名前空間まで含めてクラス名を取得
var fullClassName = this.GetType().FullName;
// クラス名のみ取得
var className = this.GetType().N
以上是关于csharp Util C#的主要内容,如果未能解决你的问题,请参考以下文章
csharp UTIL
csharp UTIL
csharp C#中的免费Monad实现(CSharp)
csharp 实例-CSHARP-GroupDocs.Conversion.Examples.CSharp变频-ConvertToPresentationWithoutCommentsAsPath.c
csharp 例如-CSHARP-GroupDocs.Signature.Examples.CSharp的签名,signingslidedocumentwithdigitalcertificate.c
csharp 例如-CSHARP-GroupDocs.Text.Examples.CSharp-DocumentTextExtractor-ExtractTextFromPdfPortfolios.c