GithubHelp home page GithubHelp logo

Comments (5)

dahall avatar dahall commented on June 1, 2024

It will really help if you provide more context so I don't have to assume your intent. Here, I assume you're talking about the lpCommandLine parameter. If so, then it does need to be a StringBuilder per its documented use:
"The Unicode version of this function, CreateProcessW, can modify the contents of this string. Therefore, this parameter cannot be a pointer to read-only memory (such as a const variable or a literal string). If this parameter is a constant string, the function may cause an access violation."

from vanara.

NN--- avatar NN--- commented on June 1, 2024

Sorry, forgot to put the link.
Yes I am talking about CreateProcess.
It is okay to pass string, since .NET marshaller always copies the string, so it is can be freely modified without touching the original one.

from vanara.

dahall avatar dahall commented on June 1, 2024

Correct, but then that copied string is not available to the developer. Using StringBuilder allows the developer to see the changes made by the function.

from vanara.

NN--- avatar NN--- commented on June 1, 2024

CreateProcess doesn't make any visible effect to caller.
It just changes string internally and then restores it to original.

from vanara.

NN--- avatar NN--- commented on June 1, 2024

https://blogs.msdn.microsoft.com/oldnewthing/20090601-00/?p=18083
The CreateProcess temporarily modifies the string you pass as the lpCommandLine in its attempt to figure out where the program name ends and the command line arguments begin.

from vanara.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.