Windows mobile 中的 C# 返回部分字符、二进制、文本或图像表达式的函数是什么?

发布于 2024-11-09 00:22:49 字数 106 浏览 0 评论 0原文

Windows mobile 中 C# 返回部分字符、二进制、文本或图像表达式的函数是什么?因为 Substring() 函数在 Windows Mobile 中不起作用。

What is the function for returning part of a character, binary, text, or image expression in C# in Windows mobile? Because Substring() function does not work in Windows Mobile.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

请恋爱 2024-11-16 00:22:49

大多数移动设备显然都支持 子字符串框架。来自 MSDN:

支持

Windows 98、Windows Server 2000 SP4、Windows CE、Windows Millennium Edition、Windows Mobile for Pocket PC、Windows Mobile for Smartphone、Windows Server 2003、Windows XP Media Center Edition、Windows XP Professional x64 Edition、Windows XP SP2、Windows XP Starter Edition

Windows Vista、Microsoft Windows XP SP2 和 Windows Server 支持 Microsoft .NET Framework 3.0 2003 SP1。

Substring is apparently supported by most mobile frameworks. From MSDN:

Supported By

Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

み零 2024-11-16 00:22:49

如果您想要字符串中的字符,您可以尝试:

string str="abc";
char firstChar=str[0];

If you want a character from a string you can try:

string str="abc";
char firstChar=str[0];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文