當前位置: 首頁>>代碼示例>>C#>>正文


C# Serialiser._Write方法代碼示例

本文整理匯總了C#中Tools.Serialiser._Write方法的典型用法代碼示例。如果您正苦於以下問題:C# Serialiser._Write方法的具體用法?C# Serialiser._Write怎麽用?C# Serialiser._Write使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Tools.Serialiser的用法示例。


在下文中一共展示了Serialiser._Write方法的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: SymtypeSerialise

 static object SymtypeSerialise(object o,Serialiser s)
 {
     if (s.Encode)
     {
         s._Write((int)o);
         return null;
     }
     return (CSymbol.SymType)s._Read();
 }
開發者ID:montyaahad,項目名稱:PokerBot,代碼行數:9,代碼來源:serialise.cs

示例2: UnicodeCategorySerialise

 static object UnicodeCategorySerialise(object o,Serialiser s)
 {
     if (s.Encode)
     {
         s._Write((int)o);
         return null;
     }
     return (UnicodeCategory)s._Read();
 }
開發者ID:montyaahad,項目名稱:PokerBot,代碼行數:9,代碼來源:serialise.cs

示例3: StringSerialise

 static object StringSerialise(object o,Serialiser s)
 {
     if (s==null)
         return "";
     Encoding e = new UnicodeEncoding();
     if (s.Encode)
     {
         byte[] b = e.GetBytes((string)o);
         s._Write(b.Length);
         for (int j=0;j<b.Length;j++)
             s._Write((int)b[j]);
         return null;
     }
     int ln = s._Read();
     byte[] bb = new byte[ln];
     for (int k=0;k<ln;k++)
         bb[k] = (byte)s._Read();
     string r = e.GetString(bb,0,ln);
     return r;
 }
開發者ID:montyaahad,項目名稱:PokerBot,代碼行數:20,代碼來源:serialise.cs

示例4: IntSerialise

 static object IntSerialise(object o,Serialiser s)
 {
     if (s.Encode)
     {
         s._Write((int)o);
         return null;
     }
     return s._Read();
 }
開發者ID:montyaahad,項目名稱:PokerBot,代碼行數:9,代碼來源:serialise.cs

示例5: HashtableSerialise

 static object HashtableSerialise(object o,Serialiser s)
 {
     if (s==null)
         return new Hashtable();
     Hashtable h = (Hashtable)o;
     if (s.Encode)
     {
         s._Write(h.Count);
         foreach (DictionaryEntry d in h)
         {
             s.Serialise(d.Key);
             s.Serialise(d.Value);
         }
         return null;
     }
     int ct = s._Read();
     for (int j=0;j<ct;j++)
     {
         object k = s.Deserialise();
         object v = s.Deserialise();
         h[k] = v;
     }
     return h;
 }
開發者ID:montyaahad,項目名稱:PokerBot,代碼行數:24,代碼來源:serialise.cs

示例6: CharSerialise

 static object CharSerialise(object o,Serialiser s)
 {
     Encoding e = new UnicodeEncoding();
     if (s.Encode)
     {
         byte[] b = e.GetBytes(new string((char)o,1));
         s._Write((int)b[0]);
         s._Write((int)b[1]);
         return null;
     }
     byte[] bb = new byte[2];
     bb[0] = (byte)s._Read();
     bb[1] = (byte)s._Read();
     string r = e.GetString(bb,0,2);
     return r[0];
 }
開發者ID:montyaahad,項目名稱:PokerBot,代碼行數:16,代碼來源:serialise.cs

示例7: BoolSerialise

 static object BoolSerialise(object o,Serialiser s)
 {
     if (s.Encode)
     {
         s._Write(((bool)o)?1:0);
         return null;
     }
     int v = s._Read();
     return v!=0;
 }
開發者ID:montyaahad,項目名稱:PokerBot,代碼行數:10,代碼來源:serialise.cs


注:本文中的Tools.Serialiser._Write方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。