w() 공개 메소드

public w ( char ch ) : ObjEncoder
ch char
리턴 ObjEncoder
예제 #1
0
파일: Duration.cs 프로젝트: nomit007/f4
 public void encode(ObjEncoder @out)
 {
     @out.w(toStr());
 }
예제 #2
0
파일: FanBool.cs 프로젝트: nomit007/f4
 public static void encode(bool self, ObjEncoder @out)
 {
     @out.w(self ? "true" : "false");
 }
예제 #3
0
파일: Slot.cs 프로젝트: xored/f4
 public void encode(ObjEncoder @out)
 {
     m_parent.encode(@out); @out.w(m_name);
 }
예제 #4
0
파일: FanDecimal.cs 프로젝트: nomit007/f4
 public static void encode(BigDecimal self, ObjEncoder @out)
 {
     @out.w(self.ToString()).w("d");
 }
예제 #5
0
파일: FanFloat.cs 프로젝트: nomit007/f4
 public static void encode(double self, ObjEncoder @out)
 {
     if (System.Double.IsNaN(self)) @out.w("sys::Float(\"NaN\")");
       else if (self == System.Double.PositiveInfinity) @out.w("sys::Float(\"INF\")");
       else if (self == System.Double.NegativeInfinity) @out.w("sys::Float(\"-INF\")");
       else @out.w(toStr(self)).w("f");
 }
예제 #6
0
파일: Type.cs 프로젝트: nomit007/f4
 public void encode(ObjEncoder @out)
 {
     @out.w(signature()).w("#");
 }
예제 #7
0
파일: FanInt.cs 프로젝트: nomit007/f4
 public static void encode(long self, ObjEncoder @out)
 {
     @out.w(self.ToString());
 }