I have an object that uses some underlying native resources, and has a pointer to the next instance, which I iterate through similar to:
We are getting the following warning from Code Analysis in Visual Studio 2010 and I\'m wondering if this is a false positive that we can safely ignore or the code should be refactored to correctly dis
while 1: text_file = open(\"write_it.txt\", \"w\") word = input(\"Please add to a text file: \") What else do I need to add to make my code ru开发者_StackOverflown properly?This should work: