Posts by Rhadamants TriboGamer • 21 points
2 posts
-
2
votes0
answers30
viewsQ: Extract and execute a foreach loop resource c#
private string GetDialogs() { string temp = Path.Combine(Directory.GetCurrentDirectory(), "dlgs.exe"); using FileStream stream = new(temp, FileMode.OpenOrCreate, FileAccess.Write, FileShare.Read);…
c#asked Rhadamants TriboGamer 21 -
-1
votes1
answer37
viewsQ: C# Lambda for Java Lambda
I have this code in C#. A lambda expression that searches for files in a directory using regex and plays those files in a function by running a command line. All found files are added in "Task" to…