What's the difference between double quotes and single quote in C#

后端 未结 5 1145
天命终不由人
天命终不由人 2020-12-02 21:49

What\'s the difference between double quotes and single quote in C#?

I coded a program to count how many words are in a file

using System;
using Syst         


        
5条回答
  •  不知归路
    2020-12-02 22:40

    you are looking for spaces, this can be done as a space in a string or as a char. So in my opinion this would work.

    (By the way, if the file contains sentences with dots. And someone forgot to add a space after the dot, the word will not be added to the total amount of words)

提交回复
热议问题