-
-
Notifications
You must be signed in to change notification settings - Fork 133
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
re-implemented logic of
CreateTempDirectory
and processing intermed…
…iate files when RunIlAsm related issue: #73
- Loading branch information
Showing
6 changed files
with
96 additions
and
116 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
//# Author of original code ([Decompiled] MIT-License): Copyright (c) 2009-2015 Robert Giesecke | ||
//# Use Readme & LICENSE files for details. | ||
|
||
//# Modifications: Copyright (c) 2016-2020 Denis Kuzmin < [email protected] > GitHub/3F | ||
//$ Distributed under the MIT License (MIT) | ||
|
||
namespace RGiesecke.DllExport.Extensions | ||
{ | ||
internal static class StringExtension | ||
{ | ||
internal static bool IsTrue(this string str) | ||
{ | ||
if(string.IsNullOrEmpty(str)) | ||
{ | ||
return false; | ||
} | ||
|
||
switch(str) | ||
{ | ||
case "1": case "true": case "True": case "TRUE": return true; | ||
/* legacy */ case "yes": case "Yes": case "YES": return true; | ||
} | ||
|
||
return false; | ||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.