下面的c代码使用vsprintf将char数组转换为int。我将如何在C#中执行此操作?我尝试将c#字符串强制转换为int,然后添加值,但返回结果不同。我的C#代码需要返回与C代码相同的值(3224115)

C#代码

  var  astring = "123";
        int output = 0;
        foreach(char c in astring){
            var currentChar = (int)c;
            output += c;
        }
//output = 150


C代码

void vout(char *string, char *fmt, ...);
char fmt1 [] = "%d";

int main(void)
{
   char string[32];

   vout(string, fmt1, '123');        //output is 3224115
   printf("The string is:  %s\n", string);
}
void vout(char *string, char *fmt, ...)

{
   va_list arg_ptr;

   va_start(arg_ptr, fmt);
   vsprintf(string, fmt, arg_ptr);
   va_end(arg_ptr);
}

最佳答案

终于想通了。可能会更干净一点,但是它可以正常工作,并且获得与c代码相同的输出。

 public static ulong getAsciiLiteral(string x)
{
    int len = x.Length;
    string[] strArray = new string[32];
    byte[] finalByte = new byte[32];
    int i = 0;
    int i2 = 0;
    int i3 = 0;
    int offset = 0;
    var hexFinalString = "0x";
    var bytes = Encoding.ASCII.GetBytes(x);

    if(len >= 5)
    {
        while (true)
        {
            if (4 + i3 == len)
            {
                offset = i3;
                break;
            }
            else
            {
                i3++;
            }
        }

    }


    foreach (byte b in bytes)
    {
        strArray[i] = b.ToString("X2");
        i++;
    }
    i = 0;
    i3 = 0;
    while (i3 < len - 1)
    {



        hexFinalString += strArray[offset];
        offset++;
        i3++;
    }


    var ret = Convert.ToUInt64(hexFinalString, 16);
    return ret;

}

关于c# - C#-Vsprintf等价的将Char转换为Int,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/47041540/

10-11 01:51