IRC Networks
Irc Logs Stats
Start date: 2007-09-27 02:48:27
Last update: 2008-10-24 20:19:38
Channels: 41
Logged Lines: 6230436
Size: 1822.40 MB
Powered by
Channel Info
Network: freenodeChannel: #csharp |
Search in www.irclog.org
Log from #csharp at freenode 2006-08-05
[06:13]<axjwmgyggm>yes ok
[06:14]<dzrrjgd>yeah,
[06:16]<dzrrjgd>what vars were you talking about reuseing?
[06:18]<axjwmgyggm>one moment
[06:19]<axjwmgyggm>im fixing some of it
[06:19]<axjwmgyggm>but it might not work cause i cant test it
[06:19]<axjwmgyggm>but it will be closer
[06:19]<dzrrjgd>k
[06:22]<axjwmgyggm>its only a guess
[06:22]<axjwmgyggm>because i dont know what you are doing
[06:22]<axjwmgyggm>http://pastebin.ca/116153
[06:25]<axjwmgyggm>does it work?
[06:26]<dzrrjgd>line 16 can't be a foreach. i need to remove out of _incomplete to avoid _incomplete getting large then slowing it down.
[06:27]<dzrrjgd>i'm rearranging a few things....
[06:28]<axjwmgyggm>just clear it
[06:28]<axjwmgyggm>clear it on each foreach of Headers
[06:31]<dzrrjgd>i can't, if a encodedheader which has the base subject, the subject with out the (??/??), has only 10 of a total 13 it still needs the other 3 so needs to remain in _incomplete from header to header
[06:31]<dzrrjgd>holdon
[06:31]<axjwmgyggm>redesign it
[06:31]<axjwmgyggm>the whole thing needs to be redone
[06:32]<dzrrjgd>i moved the declration of sep and ep out of the loop and i'm only useing ep instead to appears very fast now i need to see if it sorted correctly
[06:35]<dzrrjgd>chowmeined: what do you think about --> http://pastebin.ca/116019
[06:36]<axjwmgyggm>im done here
[06:38]<dzrrjgd>lol
[08:35]<afd>hello!
[08:37]<zgzzcygnv>hmmm
[08:43]<zczsxzz>mm, what are the .net tags called which are associated with methods? eg, like [TestCase] etc before method signatures.
[08:44]<axjwmgyggm>wiki
[08:44]<axjwmgyggm>this stuff is fun
[08:47]<zgzzcygnv>http://en.wikipedia.org/wiki/D%C3%A9j%C3%A0_vu
[08:47]<zgzzcygnv>i get deja vu all the time, like sometimes several times per day
[08:47]<zgzzcygnv>most frequently while playing a game and having music playing at the same time
[08:48]<zgzzcygnv>that seems to trigger the sensation a lot
[08:49]<[dam]>http://www.gwn.com/news/story.php/id/10042/ holly shit
[08:50]<zgzzcygnv>welcome to last week
[08:51]<[dam]>humm time travel? sweet another paycheck :D
[09:01]<igmurgn>Is it legal for a constructor class to have more than one function? I.E. not a function in the name of the class? And what would that be useful for? Calling other functions within the constructor class?
[09:02]<zgzzcygnv>constructor class? wtf?
[09:02]<zgzzcygnv>a constructor is a method that is called when the class is instantiated
[09:07]<igmurgn>my terminology is a bit off no doubt. I meant within class X I have function X - several of them that accept different parameters. I was wondering if it was legal to also add functions that don't share the name of the other functions and class
[09:09]<igmurgn>I simply called the class a constructor class because it contained functions of the same name as the class itself, and thus is executed automatically upon being called.
[09:11]<zgzzcygnv>i think you need to find a book that allows you to figure out what the hell you are doing
[09:11]<zgzzcygnv>C# has no functions
[09:12]<zgzzcygnv>terminology is step 1 otherwise you won't be able to understand any help your given
[09:12]<igmurgn>hehe point taken
[09:12]<zgzzcygnv>also...learn by experimentation
[09:13]<zgzzcygnv>it'll probably take less time to just do what your trying to do and compile and see if it gives you errors
[09:13]<zgzzcygnv>if it does you can paste the code and the errors to a site like http://pastebin.ca/ and give us the link so we can see whats going on
[09:14]<igmurgn>The reason I was asking was my expirments led to errors - but I can investigate it further I suppose
[09:14]<igmurgn>I'm trying to make a transition from bash scripting to this... so yea I probabily need to brush up on terminology
[09:14]<igmurgn>Before I drive someone out of their mind ;)
[09:16]<igmurgn>heh, my book calls them "functions" :D perhaps this was the wrong one to select at the book store
[09:17]<zgzzcygnv>if it calls C# methods "functions", go back to the book store and tell them to send all the copies of that book back to the publisher
[09:17]<zgzzcygnv>C# does not have functions, it has Methods
[09:17]<zgzzcygnv>a Method is a Member of a class
[09:17]<zgzzcygnv>a Field is also a Member of a class
[09:18]<igmurgn>:D thanks
[09:20]<zczsxzz>Yes. Just remember: if it has methods, it probably sucks :D
[09:22]<igmurgn>?? Why? lol
[09:26]<igmurgn>wouldn't you need methods?
[09:50]<frdlcyg>urm, not convinced by that. You could say a method is a function which is a member of a class, or a member function
[09:50]<frdlcyg>Well, according to my book anyhow ;)
[09:52]<igmurgn>lol my book as well
[09:52]<igmurgn>who knows
[09:53]<zczsxzz>Induane: C :)
[09:54]<zczsxzz>mm, what's the C# equivelant of Java's 'super' call?
[09:54]<zczsxzz>(for constructors)
[09:54]<[dam]>base
[09:55]<zczsxzz>mm, care to put that into context? eg, if i have public MyException(string msg) ...
[09:55]<zgzzcygnv>method == function
[09:55]<zgzzcygnv>theyre the same thing
[09:55]<zczsxzz>{ base(msg); } doesnt work...
[09:55]<zgzzcygnv>but in C#, you never call it a function
[09:55]<zczsxzz>AnarkiNet: no, a method is an operation on an object.
[09:55]<zgzzcygnv>its always called a method
[09:56]<zczsxzz>the closest thing to a function in C# is a static method.
[09:56]<frdlcyg>Yeh, that's what I was thinking.
[09:57]<frdlcyg>is it not MyException : base() ?
[09:57]<frdlcyg>urh, missing brackets..
[09:58]<[dam]>Akashra : http://pastebin.ca/116384
[09:58]<[dam]>was copied from http://www.c-sharpcorner.com/Language/InheritNPolyRVS.asp
[09:58]<frdlcyg>woo, i must be learning something
[09:58]<igmurgn>http://rafb.net/paste/results/Ao9slv90.nln.html <-- normally I can create a method but not call it and it only generates a warning. But in this test code I was making, it generates an odd warning I don't see referenced... I think it has to do with the deconstructor but I don't know why... it tells me otherclass is already defined.
[09:58]<zczsxzz>lampkin: yeah, that's it, found it not.
[09:58]<zczsxzz>s/not/now
[09:59]<igmurgn>Can anyone explain to me why this error occurs?
[10:01]<igmurgn_>sorry right after my last statement the power flickered
[10:02]<igmurgn_>if anyone attempted to answer my question I did not get to view it
[10:02]<frdlcyg>no
[10:03]<igmurgn_>hehe well then I didn't miss anything ;)
[12:34]<zgzzcygnv>hmmm
[12:35]<zgzzcygnv>SCO is tanking so bad, rofl
[12:35]<zgzzcygnv>stock going from $20-something/share to $2.28/share over a few years...thats bad
[12:52]<cjmgrug>LO AnarkiNet
[12:52]<cjmgrug>lo*
[14:39]<cjmgrug>anybody alive?
[14:49]<rnzrnf_->hi, sb common with ssl/asn? i´m failing at one point of the mono-security-code







