.NET Development
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
 
User Name:
Password:
Remember me
Go Back   ASP Free ForumsProgramming.NET Development

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread ASP Free Forums Sponsor:
  #1  
Old August 14th, 2000, 12:41 AM
Steve Schofield Steve Schofield is offline
Contributing User
ASP Free God 20th Plane (14500 - 14999 posts)
 
Join Date: Dec 2002
Posts: 14,575 Steve Schofield User rank is Corporal (100 - 500 Reputation Level)Steve Schofield User rank is Corporal (100 - 500 Reputation Level)Steve Schofield User rank is Corporal (100 - 500 Reputation Level)Steve Schofield User rank is Corporal (100 - 500 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 24
is c# contains pointers

<i><b>Originally posted by : bassem farouk (bassem_farouk@yahoo.com)</b></i><br />is c# contains pointers<br />is it portable<br />what is its advantage upon JAVA<br />

Reply With Quote
  #2  
Old August 14th, 2000, 03:37 AM
Steve Schofield Steve Schofield is offline
Contributing User
ASP Free God 20th Plane (14500 - 14999 posts)
 
Join Date: Dec 2002
Posts: 14,575 Steve Schofield User rank is Corporal (100 - 500 Reputation Level)Steve Schofield User rank is Corporal (100 - 500 Reputation Level)Steve Schofield User rank is Corporal (100 - 500 Reputation Level)Steve Schofield User rank is Corporal (100 - 500 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 24
<i><b>Originally posted by : Don Wolthuis (don.wolthuis@CodeJunkies.Net)</b></i><br />How's it going?<br /><br />Since you are writing in managed code which is controlled by the NGWS runtime unsafe operations are not allowed, hence pointers or memory manipulation is not allowed. So if you want to remain using pointers the way you are use to you will have to use C. As far as portable, that is what the framework (NGWS) is all about. Finally, advantage over JAVA, I am not a JAVA programmer so I cannot help you with that! Mabey someone else can. I would recommend a switch though!<br /><br />Hope this helps,<br /><br /><br />_________________________________<br />Don Wolthuis, MCSD<br />CodeJunkies.Net / theFutureOfASP.com<br />don.wolthuis@codejunkies.net<br /><br />Two new sites are coming, dedicated exclusively to ASP+. Stay tuned for<br />www.ASPNextGen.com and www.theFutureOfASP.com, both brought to you<br />exclusively by CodeJunkies.Net.<br /><br /><br />------------<br />bassem farouk at 8/13/2000 9:41:03 PM<br /><br />is c# contains pointers<br />is it portable<br />what is its advantage upon JAVA<br />

Reply With Quote
  #3  
Old August 30th, 2000, 05:42 AM
Steve Schofield Steve Schofield is offline
Contributing User
ASP Free God 20th Plane (14500 - 14999 posts)
 
Join Date: Dec 2002
Posts: 14,575 Steve Schofield User rank is Corporal (100 - 500 Reputation Level)Steve Schofield User rank is Corporal (100 - 500 Reputation Level)Steve Schofield User rank is Corporal (100 - 500 Reputation Level)Steve Schofield User rank is Corporal (100 - 500 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 24
<i><b>Originally posted by : Ian Blackburn (Ian@bbits.co.uk)</b></i><br />However, the way I understand it, you can mark code as Unsafe if you want to use pointers. There is an interesting article from the creator of c# here http://windows.oreilly.com/news/hejlsberg_0800.html<br /><br />where he says:<br />"Unsafe code allows you to write inline C code with pointers, to do unsafe casts, and to pin down memory so it won't accidentally be garbage-collected"<br /><br />Ian Blackburn<br />Blackburn IT Services<br />http://www.bbits.co.uk<br /><br />------------<br />Don Wolthuis at 8/14/2000 12:37:45 AM<br /><br />How's it going?<br /><br />Since you are writing in managed code which is controlled by the NGWS runtime unsafe operations are not allowed, hence pointers or memory manipulation is not allowed. So if you want to remain using pointers the way you are use to you will have to use C. As far as portable, that is what the framework (NGWS) is all about. Finally, advantage over JAVA, I am not a JAVA programmer so I cannot help you with that! Mabey someone else can. I would recommend a switch though!<br /><br />Hope this helps,<br /><br /><br />_________________________________<br />Don Wolthuis, MCSD<br />CodeJunkies.Net / theFutureOfASP.com<br />don.wolthuis@codejunkies.net<br /><br />Two new sites are coming, dedicated exclusively to ASP+. Stay tuned for<br />www.ASPNextGen.com and www.theFutureOfASP.com, both brought to you<br />exclusively by CodeJunkies.Net.<br /><br /><br />------------<br />bassem farouk at 8/13/2000 9:41:03 PM<br /><br />is c# contains pointers<br />is it portable<br />what is its advantage upon JAVA<br />

Reply With Quote
  #4  
Old August 30th, 2000, 05:53 AM
Steve Schofield Steve Schofield is offline
Contributing User
ASP Free God 20th Plane (14500 - 14999 posts)
 
Join Date: Dec 2002
Posts: 14,575 Steve Schofield User rank is Corporal (100 - 500 Reputation Level)Steve Schofield User rank is Corporal (100 - 500 Reputation Level)Steve Schofield User rank is Corporal (100 - 500 Reputation Level)Steve Schofield User rank is Corporal (100 - 500 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 24
<i><b>Originally posted by : D. R. Wolthuis (don.wolthuis@codejunkies.net)</b></i><br />Thanks Ian,<br /><br />I totally forgot to mention that<br /><br /><br />______________________________________<br />Don R. Wolthuis, MCSD<br />CodeJunkies.Net / ASPNextGen.com<br />don.wolthuis@codejunkies.net<br /><br />Visit www.ASPNextGen.com or www.theFutureOfASP.com, both brought to you exclusively by CodeJunkies.Net, for tutorials and information on ASP+ - the next generation of Active Server Pages.<br /><br />http://www.codejunkies.net<br /><br /><br />------------<br />Ian Blackburn at 8/30/2000 2:42:48 AM<br /><br />However, the way I understand it, you can mark code as Unsafe if you want to use pointers. There is an interesting article from the creator of c# here http://windows.oreilly.com/news/hejlsberg_0800.html<br /><br />where he says:<br />"Unsafe code allows you to write inline C code with pointers, to do unsafe casts, and to pin down memory so it won't accidentally be garbage-collected"<br /><br />Ian Blackburn<br />Blackburn IT Services<br />http://www.bbits.co.uk<br /><br />------------<br />Don Wolthuis at 8/14/2000 12:37:45 AM<br /><br />How's it going?<br /><br />Since you are writing in managed code which is controlled by the NGWS runtime unsafe operations are not allowed, hence pointers or memory manipulation is not allowed. So if you want to remain using pointers the way you are use to you will have to use C. As far as portable, that is what the framework (NGWS) is all about. Finally, advantage over JAVA, I am not a JAVA programmer so I cannot help you with that! Mabey someone else can. I would recommend a switch though!<br /><br />Hope this helps,<br /><br /><br />_________________________________<br />Don Wolthuis, MCSD<br />CodeJunkies.Net / theFutureOfASP.com<br />don.wolthuis@codejunkies.net<br /><br />Two new sites are coming, dedicated exclusively to ASP+. Stay tuned for<br />www.ASPNextGen.com and www.theFutureOfASP.com, both brought to you<br />exclusively by CodeJunkies.Net.<br /><br /><br />------------<br />bassem farouk at 8/13/2000 9:41:03 PM<br /><br />is c# contains pointers<br />is it portable<br />what is its advantage upon JAVA<br />

Reply With Quote
Reply

Viewing: ASP Free ForumsProgramming.NET Development > is c# contains pointers


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump





 Free IT White Papers!
 
Create the Optimal Architecture for your Critical Applications
Warburton's the largest independently owned bakery in the UK faced a number of difficult challenges in providing the most robust yet efficient IT infrastructure for their organization's success. IBM's services combined with their xSeries servers created the perfect platform for their SAP environment with sufficient flexibility, and did so in very time effective fashion.

 
Five Best Practices for Deploying a Successful Service-Oriented Architecture
This white paper describes the benefits you can expect with SOA, and how IBM can help take your business there.

 
Gartner Magic Quadrant for Application Delivery Controllers
Gartner summarizes its view on Application Delivery Controllers, evaluates strengths and weaknesses of solutions, and provides Magic Quadrant reporting for a quick comparison across all vendors. Learn from Gartner how you can benefit from an all-in-one device like Citrix NetScaler that delivers the highest levels of availability, performance and security.

 
Knowledge is Power
What you don't know can hurt you, and is likely costing you money and increasing your security risks during an era of scarce resources. This white paper proposes six key strategies that enterprise security managers can use to improve their network defense posture.

 
Rationalizing the Multi-Tool Environment
The rationalized multi-tool approach is flexible, scalable and cost effective. It provides the necessary input to the IT service management business processes. It preserves prior investments in monitoring tools, empowers technologists to select the best tools with which to do their jobs, and enhances effective response to incidents.

 

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2010 by Developer Shed. All rights reserved. DS Cluster 12 Hosted by Hostway
For more Enterprise Application Development news, visit eWeek