বর্তমান প্রকারের মধ্যে একটি নির্দিষ্ট টাইপ নেস্ট করতে, কোডটি নিম্নরূপ -
উদাহরণ
using System; public class Demo { public static void Main() { Type type1 = typeof(Subject); try { Type type2 = type1.GetNestedType("AdvSubject"); Console.Write("NestedType = "+ type2); } catch (ArgumentNullException e) { Console.Write("{0}", e.GetType(), e.Message); } } } public class Subject { public class BasicSubject { // } public class AdvSubject { // } }
আউটপুট
এটি নিম্নলিখিত আউটপুট −
তৈরি করবেNestedType = Subject+AdvSubject
উদাহরণ
আসুন আরেকটি উদাহরণ দেখি -
using System; public class Demo { public static void Main() { Type type1 = typeof(Subject); try { Type type2 = type1.GetNestedType(null); Console.Write("NestedType = "+ type2); } catch (ArgumentNullException e) { Console.Write("{0}", e.GetType(), e.Message); } } } public class Subject { public class BasicSubject { // } public class AdvSubject { // } }
আউটপুট
এটি নিম্নলিখিত আউটপুট −
তৈরি করবেSystem.ArgumentNullException