本文整理汇总了C#中Native.ToString方法的典型用法代码示例。如果您正苦于以下问题:C# Native.ToString方法的具体用法?C# Native.ToString怎么用?C# Native.ToString使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Native
的用法示例。
在下文中一共展示了Native.ToString方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: CreateMotifGadget
protected void CreateMotifGadget(
Native.Motif.CreateSymbol sym, IWidget parent, XResource res)
{
if (0 == this.Name.Length) {
// 名無しは作れないので強制命名
this.Name = AppContext.CreateTempName(this.GetType().Name);
}
IntPtr w = Native.Motif.XmSports.CallCreate2P(sym,
parent,
this.Name,
(null != res) ? res.ToXtArg() : null);
if (IntPtr.Zero == w) {
throw new Exception($"{sym.ToString()} failed");
}
NativeHandle = new Native.WidgetHandle(w);
if (null != res) {
res.Clear();
}
}
示例2: XtInitializeWidgetClass
// 一時的
public static void XtInitializeWidgetClass(Native.Motif.WidgetClass glass)
{
var ptr = NativeMethods.TNK_GetWidgetClass(glass);
if (IntPtr.Zero == ptr) {
throw new Exception($"NullWidget {glass.ToString()}");
}
NativeMethods.XtInitializeWidgetClass(ptr);
}