2007-04-17から1日間の記事一覧

GetType

GetTypeについて。 Console.WriteLine(typeof(object).GetMethod("ToString").IsVirtual); Console.WriteLine(((object)1).ToString()); Console.WriteLine(typeof(object).GetMethod("GetType").IsVirtual); Console.WriteLine(((object)1).GetType());上記…