Richter03

Results 21 comments of Richter03

Isn't it always has been like this ? `ParamArray` mostly input unknow length of argument and it must be the last set of argument.

Hi @Nukepayload2 , Did you try to create a delegate for it ? ```vb Delegate Sub Arg_in(Arg As Int) Delegate Sub Arg_out(ByRef Arg As Int) Dim Call_in = New Arg_in(AddressOf...

Hi @VBAndCs , Do you mean to answer #503 issue ?

@rskar-git , How would you check is value of generic type is default in VB.Net ? `Is` in VB.net can check reference type only and `Default` only use with Property,...

With so many if and type access info I think those cut corner won't make it better then just use `Object.Equals`; anyway it sad to see VB.net language syntax can't...

Stay away from any fancy feature that use machine state or interface when you coding VB.net because VB.net intellisense isn't up to date on those feature, even `Static N As...

@jrmoreno1 They still use very slow `Activator` instead anonymous static field like `Static N as Integer` without initialize.

@jrmoreno1 Just use `Nullable(Of T)` instead `Activator` , with nullable compiler can check static var has been initialized easily and faster then `Activator` .

@VBAndCs Thanks, does its performance very good ? compare to struct and pure class(no inherit or interface). Recently, I'm try to make a hybrid between class and struct, refence as...

@vbcodec They already said they won't add anything long ago, I don't have any expectation about new feature, I just try to salvage what can I use in VB, the...