Tagged Questions
The modifying tag has no wiki summary.
5
votes
3answers
905 views
Modifying Collection when using a foreach loop in c#
Basically, I would like to remove an item from a list whilst inside the foreach loop. I know that this is possible when using a for loop, but for other purposes, I would like to know if this is ...
2
votes
2answers
118 views
Enumerating a collection, then modifying it, what is the precedent for throwing an exception?
When enumerating a .NET collection, MSDN states that:
An enumerator remains valid as long as the collection remains unchanged. If changes are made to the collection, such as adding, modifying, or ...
1
vote
2answers
49 views
Python: Using addition to modify dictionary values
This is my first programming post as well as well my first program so please bear with me.
I have a dicionary that is initialized like so:
tab = ({'Mike': 0, 'Chad': 15, 'Taylor': 2})
I want ...
1
vote
4answers
415 views
Help with Warning: Cannot modify header information - headers already sent by (output started at C:\## errors
the db_connect file:
<?php
//connects to the database
$username = "username";
$password = "password";
$hostname = "host";
$database="database";
$link=mysql_connect($hostname, ...
0
votes
0answers
58 views
Right settings for firewall rule C#
I got a new question, what firewall settings is needed for blocking an IP address ? I found the property "RemoteAddress", like firewallRule.RemoteAddress, but I dont know how to use it. This is what I ...
0
votes
2answers
77 views
JavaScript - Function Not Modifying Global Variable
I'm having trouble modifying a variable within a text adventure game I'm writing code for in JavaScript. I want to change the value of a global variable using a function within a function (no, not ...
0
votes
2answers
76 views
Modifying an input NSString value in a Objective-C method
In terms of memory management, is it correct to modify the input variable content in the following method?
- (NSMutableArray *) extractResults:(NSString *)content {
...
regex = ...
0
votes
1answer
67 views
Modifying a .JAR file via a C++ Program?
I'm making a program that needs to insert .CLASS or image (.PNG) files into a .JAR file, or read what files are inside. The problem is, I have no idea where to start. I searched "Modifying a JAR file ...
0
votes
1answer
165 views
add/modify php n level associative array
$arrResult=array(
0=>array('categoryid'=>112,'catname'=>'apperal','subcategory'=>array(
412=>array('categoryid'=>428,'catname'=>'rainwear','subcategory'=>array(
...
0
votes
5answers
200 views
generic container in c# problem of modifying container elements outside the container
i have a problem in c# programming and need help,
when i create a generic container in c# and modify one of its element outside the list it's modified too,while i want to keep the elements of the ...
0
votes
3answers
428 views
Self modifying PHP script
I'm trying to modify a part of a PHP script structured like this barebone example
<-- part A -->
function modify_B($string)
{
some code to modify part B
}
<-- end A -->
<-- part B ...
0
votes
1answer
291 views
Any other way to redirect a connection to custom ip/port?
I need to redirect a connection from a game to my custom ip/port. I know that it can be done via detours, or modifying the host file, just wondering if there is any other way?