好奇心のためにちょっとした質問。C#の文字列は空の文字列で終わりますか?
string str = "string";
Console.WriteLine(str.EndsWith(string.Empty)); //true
Console.WriteLine(str.LastIndexOf(string.Empty) == str.Length); //false
//of course string are indexed from 0,
//just wrote if for fun to check whether empty string get some extra index
///somehow by a miracle:)
//finally
Console.WriteLine(str.LastIndexOf(string.Empty)
== str.LastIndexOf('g')); //true :)
「string.Empty」という概念は何ですか?それは何ですか? – thecoop
すべてには何も含まれていません。何もどこにもありません。 – BoltClock
私の質問は、そのような無意味な質問の投票が非常に多い理由でしょうか? C#文字列が空文字列で終わるかどうかを知ることが重要なのはなぜですか?貴重な情報をどのくらい正確に使いますか? – Blake7