この文章は筆者の理解のために書かれたもので、内容の正しさは保証しない。
参考
module irc | |
effect Connected(): Unit / { Message } | |
effect Message { | |
def message(msg: String): Int / { Response } | |
def reaction(id: Int, name: String): Unit / { Response } | |
} | |
effect Response { | |
def response(msg: String): Unit | |
} |
public class GameManager : MonoBehaviour | |
{ | |
Texture2D srcTexture; | |
Texture2D dstTexture; | |
Color32[] clearColors; | |
void Start() | |
{ | |
var width = 500; | |
var height = 500; |
この文章は筆者の理解のために書かれたもので、内容の正しさは保証しない。
参考
using System; | |
using System.Reflection.Emit; | |
using System.Reflection; | |
using System.Text.RegularExpressions; | |
namespace RegexCil | |
{ | |
internal class Program | |
{ | |
private delegate void NoParamDelegate(RegexRunner r); |