// GLib.TypeConverter.cs : Convert between fundamental and .NET types // // Author: Rachel Hestilow // // (c) 2002 Rachel Hestilow namespace GLibSharp { using System; using System.Collections; using System.Reflection; using GLib; /// /// Fundamental type converter /// /// /// /// Utilities for converting between TypeFundamentals and System.Type /// public class TypeConverter { private TypeConverter () {} public static GType LookupType (System.Type type) { if (type.Equals (typeof (string))) return GType.String; if (type.Equals (typeof (bool))) return GType.Boolean; if (type.Equals (typeof (int))) return GType.Int; if (type.Equals (typeof (double))) return GType.Double; if (type.Equals (typeof (float))) return GType.Float; if (type.Equals (typeof (char))) return GType.Char; if (type.Equals (typeof (uint))) return GType.UInt; if (type.IsSubclassOf (typeof (GLib.Object))) return GType.Object; if (type.IsValueType) { PropertyInfo pi = type.GetProperty ("GType"); if (pi == null) return GType.Pointer; else return (GType) pi.GetValue (null, null); } return GType.None; } } }