Exemplo n.º 1
0
 public extern var this[NativeNumber propertyName]
 {
     [XaeiOSMethodImpl(MethodImplOptions.Inline, Implementation = "{this}[{0}]")]
     get;
     [XaeiOSMethodImpl(MethodImplOptions.Inline, Implementation = "{this}[{0}] = {1}")]
     set;
 }
Exemplo n.º 2
0
 public var this[NativeNumber propertyName]
 {
     get
     {
         return _internalDictionary[propertyName];
     }
     set
     {
         _internalDictionary[propertyName] = value;
     }
 }
Exemplo n.º 3
0
 public extern void RemoveKey(NativeNumber key);
Exemplo n.º 4
0
 public extern bool ContainsKey(NativeNumber key);
Exemplo n.º 5
0
 public static extern NativeNumber Tan(NativeNumber a);
Exemplo n.º 6
0
 public static extern NativeNumber Sqrt(NativeNumber a);
Exemplo n.º 7
0
 public static extern NativeNumber Round(NativeNumber a);
Exemplo n.º 8
0
 public static extern NativeNumber Min(NativeNumber a, NativeNumber b);
Exemplo n.º 9
0
 public static extern NativeNumber Floor(NativeNumber a);
Exemplo n.º 10
0
 public static extern NativeNumber Cos(NativeNumber a);
Exemplo n.º 11
0
 public static extern NativeNumber Ceiling(NativeNumber a);
Exemplo n.º 12
0
 public void RemoveKey(NativeNumber key)
 {
     _internalDictionary.Remove(key);
 }
Exemplo n.º 13
0
 public bool ContainsKey(NativeNumber key)
 {
     return _internalDictionary.ContainsKey(key);
 }