[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

GaryDean

8/29/2008 3:13:00 PM

When I google ".Net 64 bit" all I seem to get is stuff from a couple years
back. What is the situation with .Net apps and 64 bit. You know all the
questions...

Is there a visual studio that runs 64bit.
Can I develop native 64 bit apps in .Net.
Is there a 64 bit version of the clr.
etc
etc

thanks,
Gary



9 Answers

Alex Clark

8/29/2008 7:28:00 PM

0

> Is there a visual studio that runs 64bit.

No, VS is still 32bit, it runs as a WoW process under 64 bit Windows.

> Can I develop native 64 bit apps in .Net.

Define "native"? You mean a .NET application which is for x64 only? Yes,
you can. Your apps can be compiled to target x86, x64, or "Any CPU".

If you're a VB developer, Edit & Continue will not work for 64bit apps.
There may be other debugging limitations also.

> Is there a 64 bit version of the clr.

AFAIK, the CLR assemblies are x86/x64 compatible, but not necessarily
specifically targeted to either.



Lars

8/30/2008 7:41:00 PM

0

HI

My version of VIsual studio support both 32 and 64 version of Vista. When I
installed VS I saw that some components that was installed where Vista 64
components. When I installed VS on my XP PC the same components where
installed as 32 bit components. don't know if that was the .NET components
or if it was for the C++ and VB Compiler.

I found some interesting information on the page
http://msdn.microsoft.com/en-us/library/cc5...

As far as I know you should be able to compile C# code into X++ or similar
code and then use the same code in Delphi Studio 2005 and later, or vise
versa.

The whole idea about .NET is that the developer shouldn't hve to care if the
target machine runs 32 bit or 64 Windows version or if you have a .NET
server running on Linux (Yes there are ASP.NET servers for Linux available)

It seams as the VS 2008 installer installed compiler components depending on
if it is a 64 bit or a 32 bit operationg system running. My guess is that
only affects the compilers speed not the projects created.


Lars


"Alex Clark" <quanta@noemail.noemail> skrev i meddelandet
news:u4YNY1gCJHA.4368@TK2MSFTNGP06.phx.gbl...
>> Is there a visual studio that runs 64bit.
>
> No, VS is still 32bit, it runs as a WoW process under 64 bit Windows.
>
>> Can I develop native 64 bit apps in .Net.
>
> Define "native"? You mean a .NET application which is for x64 only? Yes,
> you can. Your apps can be compiled to target x86, x64, or "Any CPU".
>
> If you're a VB developer, Edit & Continue will not work for 64bit apps.
> There may be other debugging limitations also.
>
>> Is there a 64 bit version of the clr.
>
> AFAIK, the CLR assemblies are x86/x64 compatible, but not necessarily
> specifically targeted to either.
>
>
>


Pavel Minaev

8/31/2008 7:57:00 AM

0

On Aug 29, 7:13 pm, "GaryDean" <gdeanblak...@newsgroup.nospam> wrote:
> When I google ".Net 64 bit" all I seem to get is stuff from a couple years
> back.  What is the situation with .Net apps and 64 bit.  You know all the
> questions...
>
> Is there a visual studio that runs 64bit.

No; arguably, not really needed (yet). You can still develop and debug
64-bit applications using VS.

> Can I develop native 64 bit apps in .Net.

Yes. Your assemblies as such aren't really 64-bit (well, unless you
depend on any native libs which are) - they're IL, which is agnostic
in that respect (and it is advised to keep it so in low-level interop
code by using IntPtr and friends). However, 64-bit CLR will JIT-
compile your IL to 64-bit assembly instructions and run that, so in
that sense, what executes in the end is "native 64-bit" machine code.

> Is there a 64 bit version of the clr.

Yes, has been since .NET 2.0.

Göran Andersson

8/31/2008 5:27:00 PM

0

GaryDean wrote:
> When I google ".Net 64 bit" all I seem to get is stuff from a couple years
> back. What is the situation with .Net apps and 64 bit. You know all the
> questions...
>
> Is there a visual studio that runs 64bit.

I don't know if there is one that runs as a 64 bit application, but that
is not needed to develop 64 bit applications.

> Can I develop native 64 bit apps in .Net.

Possibly, but you would rather use it to develop managed 64 bit
applications.

> Is there a 64 bit version of the clr.

Yes.



--
Göran Andersson
_____
http://www...

Cowboy

9/2/2008 5:33:00 PM

0


"GaryDean" <gdeanblakely@newsgroup.nospam> wrote in message
news:%23T3Q8meCJHA.3576@TK2MSFTNGP05.phx.gbl...
> When I google ".Net 64 bit" all I seem to get is stuff from a couple years
> back. What is the situation with .Net apps and 64 bit. You know all the
> questions...
>
> Is there a visual studio that runs 64bit.

There is a version that runs on 64 bit machines, but it is 32 bit. As
comnpilation produces IL, this is not an issue.

> Can I develop native 64 bit apps in .Net.

Yes and no. The IL is not targeted, but you can force some optimizations for
64 bit or ngen in 64 bit. Each of these creates a 64 bit only version

> Is there a 64 bit version of the clr.

Yes

--
Gregory A. Beamer
MVP, MCP: +I, SE, SD, DBA

Subscribe to my blog
http://feeds.feedburner.com/Greg...

or just read it:
http://feeds.feedburner.com/Gre...

********************************************
| Think outside the box! |
********************************************

hongyes

9/5/2008 2:15:00 PM

0

Hi Gary,

I think most of the community members have already answered your questions
well. Other than that, I want to complement some links for you to reference.

1. Is there a visual studio that runs 64bit.
Visual studio can be run in WOW64, but it is a 32-bit application.
References:
64-bit and Visual Studio 2005:
http://blogs.msdn.com/deeptanshuv/archive/2006/04/11/5...
Adam Braden clarification for Visual Studio 2008:
http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=2311722&am...

2. Can I develop native 64 bit apps in .Net.
You can compile your application and specify that it should run on a 64-bit
operating system either as a native application or under WOW64.
References:
Visual Studio 64-bit Applications:
http://msdn.microsoft.com/en-us/library/ms2...
WOW64 Implementation Details:
http://msdn.microsoft.com/en-us/library/aa3...

3. Is there a 64 bit version of the clr.
Yes, In order for managed code to execute in the 64-bit environment
consistent with the 32-bit environment, the .NET team developed the Common
Language Runtime (CLR) for the Itanium and x64 64-bit systems.
References:
Migrating 32-bit Managed Code to 64-bit:
http://msdn.microsoft.com/en-us/library/ms9...

General references for 64bit and .net:
Visual Studio Development Environment 64-Bit Support:
http://msdn.microsoft.com/en-us/library/ms2...
Debugging on a 64-Bit Platform:
http://msdn.microsoft.com/en-us/library/ms1...
64-Bit Programming with Visual C++:
http://msdn.microsoft.com/en-us/library/h2k...

Hoping that those references could help you understand .net and 64bit well.
Have a nice day!

Regards,
Hongye Sun (hongyes@online.microsoft.com, remove 'online.')
Microsoft Online Community Support

Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
msdnmg@microsoft.com.

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/en-us/subscriptions/aa948868.aspx#not....

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://support.microsoft.com/select/default.aspx?target=assistance&am....
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.

GaryDean

9/9/2008 4:52:00 PM

0

Hongye,
Thanks to you and all the others for spending time answering my inquiry!

--
Regards,
Gary Blakely

""Hongye Sun [MSFT]"" <hongyes@online.microsoft.com> wrote in message
news:3rh%236X2DJHA.1696@TK2MSFTNGHUB02.phx.gbl...
> Hi Gary,
>
> I think most of the community members have already answered your questions
> well. Other than that, I want to complement some links for you to
> reference.
>
> 1. Is there a visual studio that runs 64bit.
> Visual studio can be run in WOW64, but it is a 32-bit application.
> References:
> 64-bit and Visual Studio 2005:
> http://blogs.msdn.com/deeptanshuv/archive/2006/04/11/5...
> Adam Braden clarification for Visual Studio 2008:
> http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=2311722&am...
>
> 2. Can I develop native 64 bit apps in .Net.
> You can compile your application and specify that it should run on a
> 64-bit
> operating system either as a native application or under WOW64.
> References:
> Visual Studio 64-bit Applications:
> http://msdn.microsoft.com/en-us/library/ms2...
> WOW64 Implementation Details:
> http://msdn.microsoft.com/en-us/library/aa3...
>
> 3. Is there a 64 bit version of the clr.
> Yes, In order for managed code to execute in the 64-bit environment
> consistent with the 32-bit environment, the .NET team developed the Common
> Language Runtime (CLR) for the Itanium and x64 64-bit systems.
> References:
> Migrating 32-bit Managed Code to 64-bit:
> http://msdn.microsoft.com/en-us/library/ms9...
>
> General references for 64bit and .net:
> Visual Studio Development Environment 64-Bit Support:
> http://msdn.microsoft.com/en-us/library/ms2...
> Debugging on a 64-Bit Platform:
> http://msdn.microsoft.com/en-us/library/ms1...
> 64-Bit Programming with Visual C++:
> http://msdn.microsoft.com/en-us/library/h2k...
>
> Hoping that those references could help you understand .net and 64bit
> well.
> Have a nice day!
>
> Regards,
> Hongye Sun (hongyes@online.microsoft.com, remove 'online.')
> Microsoft Online Community Support
>
> Delighting our customers is our #1 priority. We welcome your comments and
> suggestions about how we can improve the support we provide to you. Please
> feel free to let my manager know what you think of the level of service
> provided. You can send feedback directly to my manager at:
> msdnmg@microsoft.com.
>
> ==================================================
> Get notification to my posts through email? Please refer to
> http://msdn.microsoft.com/en-us/subscriptions/aa948868.aspx#not....
>
> Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
> where an initial response from the community or a Microsoft Support
> Engineer within 1 business day is acceptable. Please note that each follow
> up response may take approximately 2 business days as the support
> professional working with you may need further investigation to reach the
> most efficient resolution. The offering is not appropriate for situations
> that require urgent, real-time or phone-based interactions or complex
> project analysis and dump analysis issues. Issues of this nature are best
> handled working with a dedicated Microsoft Support Engineer by contacting
> Microsoft Customer Support Services (CSS) at
> http://support.microsoft.com/select/default.aspx?target=assistance&am....
> ==================================================
> This posting is provided "AS IS" with no warranties, and confers no
> rights.
>


hongyes

9/10/2008 3:42:00 AM

0

You are welcome, Gary. It is always our pleasure to help you.

Have a great day! :)

Regards,
Hongye Sun (hongyes@online.microsoft.com, remove 'online.')
Microsoft Online Community Support

Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
msdnmg@microsoft.com.

This posting is provided "AS IS" with no warranties, and confers no rights.

Naked Gonad

11/24/2008 11:28:00 AM

0

Eli Grubman wrote:
> On Mon, 24 Nov 2008 09:20:48 +0000, Naked Gonad
> <bodron57@tiscali.co.uk> wrote:
>
>> Eli Grubman wrote:
>>> On Tue, 18 Nov 2008 09:35:29 +0000, Naked Gonad
>>> <bodron57@tiscali.co.uk> wrote:
>>>
>>>> Eli Grubman wrote:
>>>>> On Mon, 17 Nov 2008 18:44:59 +0000, Naked Gonad
>>>>> <bodron57@tiscali.co.uk> wrote:
>>>>>
>>>>>> Eli Grubman wrote:
>>>>>>> On Mon, 17 Nov 2008 17:15:19 +0000, Naked Gonad
>>>>>>> <bodron57@tiscali.co.uk> wrote:
>>>>>>>
>>>>>>>> Eli Grubman wrote:
>>>>>>>>> On Mon, 17 Nov 2008 16:20:14 +0000, Naked Gonad
>>>>>>>>> <bodron57@tiscali.co.uk> wrote:
>>>>>>>>>
>>>>>>>>>> Eli Grubman wrote:
>>>>>>>>>>> On Mon, 17 Nov 2008 15:25:44 +0000, Naked Gonad
>>>>>>>>>>> <bodron57@tiscali.co.uk> wrote:
>>>>>>>>>>>
>>>>>>>>>>>> Eli Grubman wrote:
>>>>>>>>>>>>> On Mon, 17 Nov 2008 14:31:28 +0000, Naked Gonad
>>>>>>>>>>>>> <bodron57@tiscali.co.uk> wrote:
>>>>>>>>>>>>>
>>>>>>>>>>>>>> Eli Grubman wrote:
>>>>>>>>>>>>>>> On Mon, 17 Nov 2008 13:48:49 +0000, Naked Gonad
>>>>>>>>>>>>>>> <bodron57@tiscali.co.uk> wrote:
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> Eli Grubman wrote:
>>>>>>>>>>>>>>>>> On Mon, 17 Nov 2008 12:00:05 +0000, Naked Gonad
>>>>>>>>>>>>>>>>> <bodron57@tiscali.co.uk> wrote:
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> Eli Grubman wrote:
>>>>>>>>>>>>>>>>>>> On Mon, 17 Nov 2008 11:37:19 +0000, Naked Gonad
>>>>>>>>>>>>>>>>>>> <bodron57@tiscali.co.uk> wrote:
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>> Eli Grubman wrote:
>>>>>>>>>>>>>>>>>>>>> On Mon, 17 Nov 2008 09:44:28 +0000, Naked Gonad
>>>>>>>>>>>>>>>>>>>>> <bodron57@tiscali.co.uk> wrote:
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>> Eli Grubman wrote:
>>>>>>>>>>>>>>>>>>>>>>> On Sun, 16 Nov 2008 19:17:32 +0000, Naked Gonad
>>>>>>>>>>>>>>>>>>>>>>> <bodron57@tiscali.co.uk> wrote:
>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>> Eli Grubman wrote:
>>>>>>>>>>>>>>>>>>>>>>>>> On Sun, 16 Nov 2008 17:52:02 +0000, Naked Gonad
>>>>>>>>>>>>>>>>>>>>>>>>> <bodron57@tiscali.co.uk> wrote:
>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>> Eli Grubman wrote:
>>>>>>>>>>>>>>>>>>>>>>>>>>> On Sun, 16 Nov 2008 17:05:58 +0000, Naked Gonad
>>>>>>>>>>>>>>>>>>>>>>>>>>> <bodron57@tiscali.co.uk> wrote:
>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>> Eli Grubman wrote:
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> On Sun, 16 Nov 2008 16:08:21 +0000, Naked Gonad
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> <bodron57@tiscali.co.uk> wrote:
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> John "C" wrote:
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> "Naked Gonad" <bodron57@tiscali.co.uk> wrote in message
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> news:49203aed_3@mk-nntp-2.news.uk.tiscali.com...
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> John "C" wrote:
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> "Naked Gonad" <bodron57@tiscali.co.uk> wrote in message
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> news:49202d0f$1_4@mk-nntp-2.news.uk.tiscali.com...
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Eli Grubman wrote:
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> On Sun, 16 Nov 2008 12:57:22 +0000, Naked Gonad
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> <bodron57@tiscali.co.uk> wrote:
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Eli Grubman wrote:
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> On Sun, 16 Nov 2008 08:52:03 +0000, Naked Gonad
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> <bodron57@tiscali.co.uk> wrote:
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Eli Grubman wrote:
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> On Sat, 15 Nov 2008 19:36:04 -0000, "Peter Hucker"
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> <none@spam.com>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> wrote:
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> On Fri, 14 Nov 2008 23:28:25 -0000, Eli Grubman
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> <eli.grubman@googlemail.com> wrote:
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> On Fri, 14 Nov 2008 18:33:50 -0000, "Peter Hucker"
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> <none@spam.com>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> wrote:
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> On Thu, 13 Nov 2008 04:15:28 -0000, Eli Grubman
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> <eli.grubman@googlemail.com> wrote:
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> On Wed, 12 Nov 2008 18:53:55 -0000, "Peter Hucker"
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> <none@spam.com>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> wrote:
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> On Tue, 11 Nov 2008 19:33:48 -0000, Naked Gonad
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> <bodron57@tiscali.co.uk> wrote:
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Peter Hucker wrote:
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> On Tue, 11 Nov 2008 03:40:32 -0000, Eli Grubman
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> <eli.grubman@googlemail.com> wrote:
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> On Mon, 10 Nov 2008 19:18:38 -0000, "Peter Hucker"
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> <none@spam.com>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> wrote:
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Would it have made a difference if it wasn't there?
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Yes, see my reply to Gonad.
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Nought is accepted as meaning nothing generally.
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> In a bank account 0 or 0 recurring=nothing, try
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> convincing
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> the bank that the 0 counts as anything more than
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> nothing.
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> It is not the same as nothing. An empty bank account is
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> not the same as no bank account.
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> One is as useless as the other.
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Not if you have an overdraft agreement.
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> That's even worse.
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Rubbish. Take the banks for all they've got!
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> And when you can't pay they'll take you for all you've got (if
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> anything).
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> They will have already done that by charging high interest on
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> the
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> overdraft.
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> And if you can't afford to pay back the interest they will go
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> after
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> your car/house/wife/
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> The last resort will be to shoot you.(give it time).
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Don't you people have debtors' prisons any more???
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Bring back the workhouses!
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Bring back the whore houses!!
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Filthy but nice.
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Thanks, pal.
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> They should build blow job bars.
>>>>>>>>>>>>>>>>>>>>>>>>>>>>> We have those.
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>> Does it give one the blow job blues?
>>>>>>>>>>>>>>>>>>>>>>>>>>> They're mostly for the blecks. You'd have to ask one of them.
>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>> Zippadee doo da!
>>>>>>>>>>>>>>>>>>>>>>>>> Yeah, he's one of them. BOING!!!
>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>> Time for bed?
>>>>>>>>>>>>>>>>>>>>>>> Those demn blecks, that's all they think of.
>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>> Possible sleeping sickness?
>>>>>>>>>>>>>>>>>>>>> Probably just lazy kaffirs.
>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>> Possibly comatose?
>>>>>>>>>>>>>>>>>>> It often seems that way until one sets the dogs on them.
>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>> But they could be barking up the wrong tree.
>>>>>>>>>>>>>>>>> Not to worry. They'll hound them down.
>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>> Only if they twig it!
>>>>>>>>>>>>>>> Even if they branch out, they'll get caught.
>>>>>>>>>>>>>>>
>>>>>>>>>>>>>> But who be-leaves that?
>>>>>>>>>>>>> It's treeson not to!
>>>>>>>>>>>>>
>>>>>>>>>>>> Wouldn't that sap ones strenght?
>>>>>>>>>>> Not if one is firmy rooted in position.
>>>>>>>>>>>
>>>>>>>>>> But that doesn't stop trunk rot though.
>>>>>>>>> It wood, woodn't it?
>>>>>>>>>
>>>>>>>> You'd have to check the rings for that.
>>>>>>> Why not just axe it how old it is?
>>>>>>>
>>>>>> Always keep both hands on yer chopper!
>>>>> Shiver me timbers!
>>>>>
>>>> Is that like tree hugging?
>>> Commie pinko faggot treehugging bedwetters.
>>>
>> There's one in every jungle (apparently).
>
> So many trees so little time...
>
Good, only for tree spotters.