FObermaier,
I deleted trunk and checked out
I am using Visual Studio 2008 but I don't know what you mean by the
following statement:
> you need to either change lambda expressions to delegates ...
I've never worked with lambda statements or delegates so I don't have
a clue how to convert the lambda statements I've seen. It would be
nice if the lambda/delegates code were in #if #else #endif blocks
Of course I got 68 Errors and 403 warnings building as is.
Thanks for sticking with me through these problems,
Joe
-------------------------------------------------------------------------------------
FROM:
x => x * x
TO:
delegate int del(int i);
del myDelegate = x => x * x;
int j = myDelegate(5); //j = 25
-------------------------------------------------------------------------------------
(1) kamap.txt //??? no conversion necessary ???
$aszMapFiles = array(
"world" => array( "World", "/path/to/your/mapfile", array( 10000 ),
# in openlayers, the scale array doesn't matter. "PNG24")
-------------------------------------------------------------------------------------
(1) BeautifulSoup.py //??? no conversion necessary ???
<foo><bar>baz</bar></foo> => <foo bar="baz"><bar>baz</bar></foo>
-------------------------------------------------------------------------------------
(2) Converter.cs
foreach (IProcessFeatureDataRecords processor in realProcessors)
{
processChain = Equals(processChain, null)
? processor.Processor
:
((IEnumerable<IFeatureDataRecord> o, ref int i) =>
processor.Processor(processChain(o, ref i), ref i));
}
processChain = processChain ??
new
FeatureDataRecordProcessor((IEnumerable<IFeatureDataRecord> o, ref int
i) => o);
-------------------------------------------------------------------------------------
(7) DynamicRTreeTests.cs //same statement seven times
// Man, I can't wait.
resultsList.AddRange(rTree.Query(searchExtents, x => x.Value));
------------------------------------------------------------------------
(1) Dictionaries.cs //string builder.Append(" => "); //??? no
conversion necessary ???
public bool Show(StringBuilder stringbuilder, ref int rest,
IFormatProvider formatProvider)
{
if (rest < 0)
return false;
if (!Showing.Show(Key, stringbuilder, ref rest, formatProvider))
return false;
stringbuilder.Append(" => ");
rest -= 4;
if (!Showing.Show(Value, stringbuilder, ref rest, formatProvider))
return false;
return rest >= 0;