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
public object CreateInstance(string Name, params object[] Args) | |
{ | |
Type ToCreate = Type.GetType(Name); | |
var InnerTypeList = new List<Type>(); | |
InnerTypeList.Add(typeof(CallSite)); | |
InnerTypeList.Add(typeof(Type)); | |
foreach (object Arg in Args) | |
{ | |
InnerTypeList.Add(Arg.GetType()); |
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
for (int i = 0; i < 100; i++) | |
Console.WriteLine((0 == i % 3 && 0 == i % 5) ? "FizzBuzz" : 0 == i % 3 ? "Fizz" : 0 == i % 5 ? "Buzz" : i.ToString()); |
NewerOlder