C# এ Type.GetTypeFromHandle() পদ্ধতিটি নির্দিষ্ট টাইপ হ্যান্ডেল দ্বারা উল্লেখিত টাইপ পেতে ব্যবহৃত হয়।
সিনট্যাক্স
নিম্নলিখিত বাক্য গঠন −
public static Type GetTypeFromHandle (RuntimeTypeHandle handle);
উপরে, হ্যান্ডেল প্যারামিটার হল বস্তু যা ধরনকে নির্দেশ করে।
উদাহরণ
আসুন এখন Type.GetTypeFromHandle() পদ্ধতি প্রয়োগ করার জন্য একটি উদাহরণ দেখি -
using System; public class Demo { public static void Main(){ Type type1 = typeof(short); RuntimeTypeHandle typeHandle = Type.GetTypeHandle(type1); Type type = Type.GetTypeFromHandle(typeHandle); Console.WriteLine("Attributes = " + type.Attributes); } }
আউটপুট
এটি নিম্নলিখিত আউটপুট −
তৈরি করবেAttributes = AutoLayout, AnsiClass, Class, Serializable, BeforeFieldInit
উদাহরণ
এখন Type.GetTypeFromHandle() পদ্ধতি প্রয়োগ করার জন্য আরেকটি উদাহরণ দেখা যাক -
using System; public class Demo { public static void Main(){ Type type1 = typeof(System.Type); RuntimeTypeHandle typeHandle = Type.GetTypeHandle(type1); Type type = Type.GetTypeFromHandle(typeHandle); Console.WriteLine("Attributes = " + type.Attributes); } }
আউটপুট
এটি নিম্নলিখিত আউটপুট −
তৈরি করবেAttributes = AutoLayout, AnsiClass, Class, Serializable, BeforeFieldInit