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
<Project> | |
<!-- MSBuildRuntimeType: cond check for omnisharp-vscode support problem --> | |
<Target Condition=" '$(OS)' == 'Windows_NT' AND '$(MSBuildRuntimeType)' == 'Core' " Name="RewriteAssemblyTitle" BeforeTargets="PrepareForBuild"> | |
<PropertyGroup> | |
<TimeText>UTC $([System.DateTime]::UtcNow.ToString('yyyy/MM/dd HH:mm:ss'))</TimeText> | |
</PropertyGroup> | |
<FindVCSInfoTarget Condition=" '$(VCSInfoTarget)' == '' OR !EXISTS( $(VCSInfoTarget) ) " CurrentDirName="$(ProjectDir)"> | |
<Output TaskParameter="DirectoryInParent" PropertyName="VCSInfoTarget" /> | |
</FindVCSInfoTarget> |
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
using System; | |
using System.Diagnostics; | |
using System.Globalization; | |
using System.IO; | |
using System.Text; | |
using System.Threading; | |
namespace HighResolutionTimer | |
{ |
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
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
using UnityGoogleDrive; // https://github.com/Elringus/UnityGoogleDrive | |
public class GoogleDriveTest : MonoBehaviour | |
{ | |
[RuntimeInitializeOnLoadMethod(RuntimeInitializeLoadType.AfterSceneLoad)] | |
static void AfterSceneLoad() |
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
using System; | |
using System.Collections; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Linq.Expressions; | |
using System.Reflection; | |
using System.Text; | |
using GameDevWare.Dynamic.Expressions; | |
using GameDevWare.Dynamic.Expressions.CSharp; | |
using UnityEngine; |
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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Linq.Expressions; | |
using System.Text; | |
namespace Microsoft.EntityFrameworkCore | |
{ | |
delegate object[] KeySelector(object entry); |
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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using BenchmarkDotNet.Attributes; | |
using BenchmarkDotNet.Jobs; | |
namespace Benchmarks | |
{ | |
/* |
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
Set FSO = CreateObject("Scripting.FileSystemObject") | |
Sub 掃描工作目錄檔案() '表單上面放按鈕或是用 [Alt]+[F8] 啟動巨集 | |
inputFolderPath = PickFolder(ThisWorkbook.Path, "Select folder for search xls/xlsx/xlm") | |
If inputFolderPath = "" Then Exit Sub | |
outputFolderPath = PickFolder(inputFolderPath, "Select folder for output sheets as csv") | |
If outputFolderPath = "" Then Exit Sub | |
Execute inputFolderPath, outputFolderPath | |
End Sub |
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
using System; | |
using System.Drawing; | |
using System.Linq; | |
using System.Threading.Tasks; | |
using System.Windows.Forms; | |
namespace WinFormTaskAnimeDemo | |
{ | |
public sealed class MainForm : Form | |
{ |
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
using System; | |
using System.IO; | |
using System.Security.Cryptography; | |
using System.Text; | |
namespace FY.Cryptography | |
{ | |
/// <summary> | |
/// 非對稱加密工具 (非對稱算法包裝對稱算法) | |
/// |
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
using System; | |
using System.Windows.Forms; | |
namespace CrossFromsDemo | |
{ | |
static class Program | |
{ | |
[STAThread] | |
static void Main() | |
{ |
OlderNewer