• APIブラウザ
  • 設計思想
Show / Hide Table of Contents
  • ExapisSOP
    • AppWorker
    • ContextEventArgs
    • HostRunner
    • IConfiguration
    • IContext
    • IPipeline
    • IProcess
    • IProcess<TParam, TResult>
    • IService
    • TerminationEventArgs
    • TerminationException
    • TerminationReason
    • UnhandledErrorEventArgs
    • VersionInfo
  • ExapisSOP.Binary
    • DataValue
  • ExapisSOP.Core
    • ConfigurationExtensions
    • ContextExtensions
    • CustomPipelineProcess<TParam, TResult>
    • ImmutablePipeline
    • Pipeline
    • PipelineExtensions
    • PipelineExtensions.ExceptionHandler
    • PipelineExtensions.ExceptionHandler<TParam, TResult>
    • PipelineExtensions.LoggingProcess
    • PipelineExtensions.NextProcessFunc
    • PipelineExtensions.ProcessFunc
    • PipelineExtensions.ProcessFunc<TParam, TResult>
    • PipelineExtensions.ProcessFuncWrapper
    • PipelineExtensions.ProcessFuncWrapper<TParam, TResult>
  • ExapisSOP.Globalization
    • EnglishErrorReportBuilder
    • JapaneseErrorReportBuilder
  • ExapisSOP.IO
    • CachedStream
    • DefaultPath
    • FileSystemServiceOptions
    • FileSystemServiceOptionsExtensions
    • IFileSystemService
    • InvalidPathFormatException
    • IPathList
    • Paths
    • PathString
    • PathStringFormatter
  • ExapisSOP.IO.Logging
    • ConsoleLogger
    • DefaultErrorDetailProvider
    • ErrorReportBuilder
    • ExceptionRecord
    • HResultDetailProvider
    • ICustomErrorDetailProvider
    • ILogFile
    • ILoggable
    • ILogger
    • ILoggingSystemService
    • LogData
    • LogFile
    • LogFileType
    • Logger
    • LoggerExtension
    • LoggingSystemServiceOptions
    • LoggingSystemServiceOptions.CreateLogFile
    • LogLevel
    • LongMessageRecord
    • MultipleLogger
    • OutputStreamLogger
  • ExapisSOP.IO.Settings
    • CustomSettings
    • DataStore
    • DefaultSettings
    • EnvironmentSettings
    • ISettingsSystemService
    • OptimizedSettings
    • SettingsSystemServiceOptions
    • SettingsSystemServiceOptions.ConfirmVersionInfo
    • SettingsSystemServiceOptions.GetVersionInfo
  • ExapisSOP.IO.Settings.CommandLine
    • CommandLineConverter
    • CommandLineParser
    • CommandLineServiceOptions
    • CommandLineServiceOptions.CreateConverterMappingTable
    • FileNameList
    • IArgumentConverter
    • IArgumentConverter<T>
    • ICommandLineService
    • ManualAttribute
    • Option
    • Option.Value
    • OptionAttribute
    • Switch
    • SwitchAttribute
  • ExapisSOP.NativeWrapper
    • INativeCaller
    • WinAPI
  • ExapisSOP.NativeWrapper.Windows
    • Kernel32
  • ExapisSOP.Numerics
    • CryptionRandom
    • IRandom
    • LinearCongruentialGenerator
    • RandomExtension
    • SerializableRandom
    • SystemRandom
    • Xorshift
    • Xorshift2
  • ExapisSOP.Text
    • SimpleEncoding
    • SimpleString
  • ExapisSOP.Utils
    • ArrayExtensions
    • ConsoleUtil
    • DisposableBase
    • IAwaitable<T>
    • IAwaiter<T>
    • IUtilityService
    • SecureStringExtensions
    • SerializationInfoExtensions
    • StringExtensions
    • StringUtil
    • UtilityConfigurationExtensions
    • UtilityContextExtensions

SimpleString クラス

SimpleEncoding形式の文字列値を表します。 このクラスは継承できません。

継承
System.Object
SimpleString
継承されたメンバー
System.Object.Equals(System.Object, System.Object)
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
名前空間: ExapisSOP.Text
アセンブリ: ExapisSOP.Utils.dll
構文
public sealed class SimpleString

コンストラクタ 一覧

| 編集/提案 ソースを表示

SimpleString()

型'SimpleString'の新しいインスタンスを生成します。

宣言
public SimpleString()
| 編集/提案 ソースを表示

SimpleString(Byte[])

型'SimpleString'の新しいインスタンスを生成します。

宣言
public SimpleString(byte[] value)
引数
型 名前 説明
System.Byte[] value

新しいインスタンスに設定する文字列です。

| 編集/提案 ソースを表示

SimpleString(String)

型'SimpleString'の新しいインスタンスを生成します。

宣言
public SimpleString(string value)
引数
型 名前 説明
System.String value

新しいインスタンスに設定する文字列です。

プロパティ 一覧

| 編集/提案 ソースを表示

Value

SimpleEncoding形式に符号化された文字列を表すバイト配列です。

宣言
public byte[] Value { get; set; }
プロパティ値
型 説明
System.Byte[]

メソッド 一覧

| 編集/提案 ソースを表示

Equals(Object)

指定したオブジェクトと現在のオブジェクトが等価かどうか判定します。

宣言
public override bool Equals(object obj)
引数
型 名前 説明
System.Object obj

判定するオブジェクトです。

戻り値
型 説明
System.Boolean

等しい場合はtrue、等しくない場合はfalseを返します。

上書き
System.Object.Equals(System.Object)
| 編集/提案 ソースを表示

FromString(String)

文字列からValueを設定します。

宣言
public void FromString(string value)
引数
型 名前 説明
System.String value

変換する文字列です。

| 編集/提案 ソースを表示

GetHashCode()

現在のオブジェクトのハッシュ値を取得します。

宣言
public override int GetHashCode()
戻り値
型 説明
System.Int32

現在のオブジェクトが格納している文字列値のハッシュ値です。

上書き
System.Object.GetHashCode()
| 編集/提案 ソースを表示

ToString()

Valueを文字列へ変換します。

宣言
public override string ToString()
戻り値
型 説明
System.String

変換された文字列です。

上書き
System.Object.ToString()
| 編集/提案 ソースを表示

ToStringWithoutNull()

Valueを文字列へ変換します。 NULL文字は取り除きます。

宣言
public string ToStringWithoutNull()
戻り値
型 説明
System.String

変換された文字列です。

  • 編集/提案
  • ソースを表示
Back to top Generated by DocFX