// GtkSharp.Generation.ConstStringGen.cs - The Const String type Generatable. // // Author: Rachel Hestilow // // (c) 2003 Rachel Hestilow namespace GtkSharp.Generation { using System; public class ConstStringGen : SimpleGen { public ConstStringGen (string ctype) : base (ctype, "string") { } public override string MarshalReturnType { get { return "IntPtr"; } } public override string FromNativeReturn(string var) { return "Marshal.PtrToStringAnsi(" + var + ")"; } } }