This file contains hidden or 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
/* | |
@echo off | |
setlocal | |
for /f "usebackq delims=" %%A in (`dir /s /b %WINDIR%\Microsoft.NET\CSC.EXE`) do set CSCFULLPATH=%%A | |
echo csc fullpath is %CSCFULLPATH% | |
@echo on | |
%CSCFULLPATH% /platform:x64 /target:exe %~n0.bat |
This file contains hidden or 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
.assembly extern mscorlib {} | |
.assembly OrangeTrigonometry {} | |
// Code to calculate Trigonometry DLL, written in CIL practice | |
//(C) orange_in_space | |
//MIT License | |
// | |
//This code is just for practice for me><; | |
// Assemble |
This file contains hidden or 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
/* | |
@echo off | |
@goto bat_part | |
ToggleCapsLock. CSharp and Windows-batch Combined file. | |
(CapsLockを切り替えるアプリを作れるやつ><) | |
Please be sure to set line breaks |
OlderNewer