本文介绍了将delphi的FileeChar转换为C#的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

你好,

我想将代码从delphi转换为C#
我想用''''填充结构对象,即C#中的32

FillChar(mystructobj,sizeof(mystruct),'''');

hello,

I want to convert code from delphi to C#
i want to fill the structure object with '' '' i.e 32 in C#

FillChar(mystructobj,sizeof(mystruct),'' '') ;

推荐答案

string s = new string('' '', 20);



祝你好运!



Good luck!


这篇关于将delphi的FileeChar转换为C#的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-25 08:09