예제 #1
0
        public static bool TryParse(string str, out KeyTime result)
        {
            bool ret = NoesisGUI_PINVOKE.KeyTime_TryParse(str != null ? str : string.Empty, out result);

            return(ret);
        }
예제 #2
0
        public static IntPtr Box_KeyTime(KeyTime val)
        {
            IntPtr ret = NoesisGUI_PINVOKE.Box_KeyTime(ref val);

            return(ret);
        }
예제 #3
0
 public bool Equals(KeyTime v)
 {
     return(this == v);
 }
예제 #4
0
 public NullableKeyTime(KeyTime v)
 {
     this._hasValue = true;
     this._value    = v;
 }