C++的strlen用C#怎么实现
时间: 2023-07-12 19:52:50 浏览: 107
UART.rar_C#串口_c# 串口_c++ 串口_uart串口c_串口接收数据
在C#中,可以使用`string`类自带的`Length`属性来获取字符串的长度,类似于C++的`strlen`函数。例如,对于一个字符串变量`str`,可以使用`str.Length`来获取其长度。示例代码如下:
```csharp
string str = "hello world";
int len = str.Length; // 获取字符串长度
Console.WriteLine(len); // 输出 11
```
需要注意的是,`Length`属性返回的是字符串中字符的数量,而不是字节的数量,这与C++中`strlen`函数的返回值不同。
阅读全文