IsAlwaysNormalized() private method

private IsAlwaysNormalized ( ) : bool
return bool
Exemplo n.º 1
0
 static public int IsAlwaysNormalized(IntPtr l)
 {
     try {
         System.Text.Encoding self = (System.Text.Encoding)checkSelf(l);
         var ret = self.IsAlwaysNormalized();
         pushValue(l, true);
         pushValue(l, ret);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }