↧
Equivalent C# Functions
Some more food for thought.http://msdn.microsoft.com/en-us/library/zwkz3536.aspxLanguage Comparisons.Mark the best replies as answers. "Fooling computers since 1971."
View ArticleEquivalent C# Functions
Here's the equivalent for On Error Resume Next (although I personally wouldn't recommend this type of coding):try{ ... one statement}catch{ //do nothing}try{ ... next statement}catch{ //do...
View ArticleEquivalent C# Functions
(1) No, they're always on. (2) Is that managed or unmanaged C++? (3) Thankfully not. :) However, maybe try{}/finally{} will give you what you want.
View ArticleEquivalent C# Functions
1.What is the equivalent settings for option strict on and option explicit on in c# ?2.I have a class in another project ( VC++). I want to access the methods and properties in VC++ class from my...
View Article