0%

C# 檢查 Regular Expression

就醬

1
2
3
4
5
6
var match = Regex.Match(input, regex, RegexOptions.IgnoreCase);

if (!match.Success)
{
// does not match
}

檢查 Regex 正確的一個網站

regex101

C# with Open Something

要打開一些玩意兒
比如說要用 nodepad 打開
就可以用以下語法

1
Process.Start("notepad.exe", fileName);

也可以用 CMD 開

1
var proc = Process.Start(@"cmd.exe ",@"/c C:\Users\user2\Desktop\XXXX.reg")

最後我使用

1
2
3
4
5
6
7
8
9
10
11
var process = new Process
{
StartInfo = new ProcessStartInfo
{
WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden,
FileName = "python.exe",
Arguments = $"openWindow.py {loginInfo.CompanyId} {loginInfo.EmpId} {DecryptString(loginInfo.Pwd, _encryptKey)}"
}
};
process.Start();

C# 使用 HttpClient 的時候出現 Misused header name. 的 Fail

我的用法是醬子

1
2
httpClient.DefaultRequestHeaders.Add("Content-Type", "application/json");

沒錯 跟智障一樣
解法可用

1
2
httpClient.DefaultRequestHeaders.Add("Accept", "application/json");

或是

1
2
3
4
httpClient.DefaultRequestHeaders
.Accept
.Add(new MediaTypeWithQualityHeaderValue("application/json")); //ACCEPT header

Github: How do you set the Content-Type header for an HttpClient request?

Wikipedia: HTTP Header

.NET Core 中正確使用 HttpClient

HttpClientFactory 好像蠻好用的
Liam Wang: .NET Core 中正确使用 HttpClient 的姿势

.Net Core 中結合 HttpClientFacotry 使用 Polly

基本上就是這篇的中譯
Github: Polly: Polly and HttpClientFactory

Liam Wang: 在 .NET Core 中结合 HttpClientFactory 使用 Polly(上篇)
Liam Wang: 在 .NET Core 中结合 HttpClientFactory 使用 Polly(中篇)
Liam Wang: 在 .NET Core 中结合 HttpClientFactory 使用 Polly(下篇)

Request 失敗就一直重 Try 的專有名詞

叫做 Exponential-Backoff
Github: Polly

C# Console 不顯示密碼

StackOverflow: C# Console - hide the input from console window while typing

這個解答更棒
StackOverflow: Password masking console application

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
string pass = "";
do
{
ConsoleKeyInfo key = Console.ReadKey(true);
// Backspace Should Not Work
if (key.Key != ConsoleKey.Backspace && key.Key != ConsoleKey.Enter)
{
pass += key.KeyChar;
Console.Write("*");
}
else
{
if (key.Key == ConsoleKey.Backspace && pass.Length > 0)
{
pass = pass.Substring(0, (pass.Length - 1));
Console.Write("\b \b");
}
else if(key.Key == ConsoleKey.Enter)
{
break;
}
}
} while (true);

ASP.NET Core 要怎麼 Post Form Data using HttpClient

這樣就可以
StackOverflow: How to post data using HttpClient?

1
2
3
4
5
6
7
8
9
10
11
12
var comment = "hello world";
var questionId = 1;

var formContent = new FormUrlEncodedContent(new[]
{
new KeyValuePair<string, string>("comment", comment),
new KeyValuePair<string, string>("questionId", questionId)
});

var myHttpClient = new HttpClient();
var response = await myHttpClient.PostAsync(uri.ToString(), formContent);

And if you need to get the response after post, you should use:

1
var stringContent = await response.Content.ReadAsStringAsync();

這篇 MongoDb C# Driver 的教學真低不錯

C#操作MongoDB的簡單實例

下面這篇感覺就普普了 不過也是可以拿來做參考
在ASP.NET Core2上操作MongoDB就是能這麼的簡便酷爽(自動完成分庫分表)

如何 Deserialize BsonValue
StackOverflow: Mongo C# Driver: Deserialize BsonValue

以下是節錄部分我的 Code 主要是將一個 array string 轉成 array Object
命名的很隨便 隨便參考就行

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
Console.WriteLine("Hello World.");
var mongoServer = new MongoServer();
var bList = mongoServer.Find("eventEntities", new BsonDocument());
foreach (var b in bList)
{
if (b["BravoEvent"] == BsonNull.Value)
{
continue;
}

var filter = new BsonDocument
{
{ "_id", b["_id"]}
};

var originCollection = b["BravoEvent"]["PossessedBravos"];
var stringList = BsonSerializer.Deserialize<List<string>>(originCollection.ToJson());
if (stringList.Count == 0)
{
continue;
}

var bArray = new BsonArray();
foreach(var s in stringList)
{
bArray.Add(new BsonDocument { { "CollectionName", s }, { "CollectedTime", DateTime.Now } });
}

b["BravoEvent"]["PossessedBravos"] = bArray;

mongoServer.Update("eventEntities", filter, b);
Console.WriteLine(b["BravoEvent"]["PossessedBravos"]);
}

Console.WriteLine("Finish");
Console.Read();