//------------------------------------------------------------ // Game Framework // Copyright © 2013-2021 Jiang Yin. All rights reserved. // Homepage: https://gameframework.cn/ // Feedback: mailto:ellan@gameframework.cn //------------------------------------------------------------ using System.IO; namespace MetaClient.Editor.DataTableTools { public sealed partial class DataTableProcessor { private sealed class CommentProcessor : DataProcessor { public override System.Type Type { get { return null; } } public override bool IsId { get { return false; } } public override bool IsComment { get { return true; } } public override bool IsSystem { get { return false; } } public override string LanguageKeyword { get { return null; } } public override string[] GetTypeStrings() { return new string[] { string.Empty, "#", "comment" }; } public override void WriteToStream(DataTableProcessor dataTableProcessor, BinaryWriter binaryWriter, string value) { } } } }