コード例 #1
0
 /// <summary>
 /// Formats the specified null ref token.
 /// </summary>
 /// <param name="nullRefToken">The null ref token.</param>
 /// <returns>The token in serialized form.</returns>
 protected override string Format(NullReferenceToken nullRefToken) {
   return CreateNode(XmlStringConstants.NULL,
     new Dictionary<string, string>{
       {"name", nullRefToken.Name}});
 }
コード例 #2
0
ファイル: Deserializer.cs プロジェクト: t-h-e/HeuristicLab
 private void NullHandler(NullReferenceToken token) {
   SetValue(token.Name, null);
 }