About 8,690,000 results
Open links in new tab
  1. What is the { get; set; } syntax in C#? - Stack Overflow

    The get/set pattern provides a structure that allows logic to be added during the setting ('set') or retrieval ('get') of a property instance of an instantiated class, which can be useful when some …

  2. Understanding .get() method in Python - Stack Overflow

    Here the get method finds a key entry for 'e' and finds its value which is 1. We add this to the other 1 in characters.get (character, 0) + 1 and get 2 as result.

  3. How to get all groups that a user is a member of? - Stack Overflow

    PowerShell's Get-ADGroupMember cmdlet returns members of a specific group. Is there a cmdlet or property to get all the groups that a particular user is a member of?

  4. python - How do I install pip on Windows? - Stack Overflow

    pip is a replacement for easy_install. But should I install pip using easy_install on Windows? Is there a better way?

  5. How can I determine installed SQL Server instances and their …

    0 I know its an old post but I found a nice solution with PoweShell where you can find SQL instances installed on local or a remote machine including the version and also be extend get …

  6. Getting today's date in YYYY-MM-DD in Python? - Stack Overflow

    Try not to use python built in functions and variables as local variables (ex: today, year, day). Also, the request from the user is to get today's date in YYYY-MM-DD format. Can you try and …

  7. python - What does request.GET.get mean? - Stack Overflow

    What your snippet of code is doing is saying, "Get the value of a GET variable with name 'page', and if it doesn't exist, return 1". Likewise, you will see request.POST used when a user …

  8. Get the last day of the month in SQL - Stack Overflow

    Basically, you get the number of months from the beginning of (SQL Server) time for YOUR_DATE. Then add one to it to get the sequence number of the next month. Then you …

  9. How do I measure elapsed time in Python? - Stack Overflow

    With a little trickery, you can even get a running elapsed-time tally inside the block from the same context-manager function. The core library doesn't have this (but probably ought to). Once in …

  10. Curl to return http status code along with the response

    437 I use curl to get http headers to find http status code and also return response. I get the http headers with the command