System.Text.Encoding.IsAlwaysNormalized C# (CSharp) Method

IsAlwaysNormalized() private method

private IsAlwaysNormalized ( ) : bool
return bool
        public bool IsAlwaysNormalized()
        {
            return this.IsAlwaysNormalized(NormalizationForm.FormC);
        }

Same methods

Encoding::IsAlwaysNormalized ( NormalizationForm form ) : bool

Usage Example

示例#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));
     }
 }