Showing results for Lucian Wischik - Visual Basic Blog

Nov 17, 2008
0
0

Romeo and Juliette and Windows Azure (Lucian Wischik)

VBTeam
VBTeam

1. Juliette sends a message "I'll take a drug which makes me look dead but I'm not really"2. Romeo receives the message3. Romeo finds Juliette looking dead, but knows she's not really dead4. They live happily ever aftervs.1. Juliette sends a message "I'll take a drug which makes me look dead but I'm not really"      &n...

Nov 14, 2008
0
0

Where are the Windows "SDK tools"? Where is ildasm? (Lucian Wischik)

VBTeam
VBTeam

C:Program FilesMicrosoft SDKsWindowsv6.0binildasm.exeC:Program FilesMicrosoft SDKsWindowsv6.0Abinildasm.exeC:Program FilesMicrosoft SDKsWindowsv7.0Abinildasm.exeC:Program FilesMicrosoft SDKsWindowsv7.0Abinx64ildasm.exeC:Program FilesMicrosoft SDKsWindowsv7.0AbinNETFX 4.0 Toolsildasm.exeC:Program FilesMicrosoft SDKsWindowsv7.0AbinNETFX 4.0 Toolsx64i...

Nov 5, 2008
0
0

Typeless expressions (Lucian Wischik)

VBTeam
VBTeam

"My dog has no type.""How does he smell?""Awful!"Two of the new features of VB10 -- array literals and multi-line lambdas -- are interesting from the language perspective because their expressions have no type! This article is for language lawyers. I remember at my very first undergraduate computer science lecture, the lecturer Frank King handed ou...

Nov 3, 2008
0
0

Community Interview with Lucian Wischik (Beth Massi)

Beth Massi
Beth Massi

Here's a community interview from our Italian Visual Basic MVP Alessandro Del Sole, this time with Lucian Wischik, a Developer on the team. I'm just getting to know Lucian but he is a very interesting and bright person who is just a pleasure to talk with (I hope he starts blogging a lot more). When I told him that out Italian community had sent som...

Nov 2, 2008
0
0

VB 2010 Language Features: The Channel9 Version (Lucian Wischik, Lisa Feigenbaum)

Lisa Feigenbaum
Lisa Feigenbaum

I recently blogged about the new VB 2010 language features announced at PDC, as well as the video available from Paul and Lucian's "VB Futures" session. Another way to learn about the new features coming out in 2010 is by watching the following Channel9 video with VB specification lead, Lucian Wischik.Title: Lucian Wischik and Lisa Feigenbaum: What...

Nov 2, 2008
0
0

TL12: Future Directions for Microsoft Visual Basic (Lisa Feigenbaum)

Lisa Feigenbaum
Lisa Feigenbaum

Didn't make it to the PDC? No problem. You can still check out the *hottest* presentation at the Professional Developers Conference this year, available publicly on demand! Paul Vick (Principal Architect) and Lucian Wischik (VB Specification Lead & Software Engineer) gave an awesome presentation on the Future of VB. The presentation i...

Oct 18, 2008
0
0

A VS plugin to background-run your code and see the output (Lucian Wischik)

VBTeam
VBTeam

Say you're demonstrating some code at a conference. What's the best way to do it? If you show only the code window, then you're counting on the audience's imagination about how the code will work (and their trust that it does!). But if you hit F5 to run it then this breaks the flow. And I find it hard to keep both the code and t...

Oct 12, 2008
0
0

Reflection on COM objects (Lucian Wischik)

VBTeam
VBTeam

Reflection on .Net objects is done through System.Type and is very easy. For instance, "Dim type = GetType(System.String)" and now you can look at all the members and inheritance hierarchy of the System.String class.Reflection on COM types is also easy if they have an interop assembly. For instance, add a project reference to the COM Microsoft...

Sep 23, 2008
0
0

To compare two filenames (Lucian Wischik)

VBTeam
VBTeam

I once visited an ancient tower in China. A sign said "tread carefully for you bear the weight of history on your shoulders". Our guide explained that the tower was over 800 years old! Oh yes, he said, it was built 800 years ago, had burnt to the ground three times in its history, had been moved to completely different locations twice, but it ...

Aug 7, 2008
0
0

Co- and contra-variance (Lucian Wischik)

VBTeam
VBTeam

How do I convert an IEnumerable(Of CheckingAccount) into an IEnumerable(Of Account) ? (where CheckingAccount inherits from Account).Currently this conversion isn't allowed, but we're considering a VB language feature to support it. The topic is called "co- and contravariance", and has been in the CLR since 2005 or so, but no one's yet released a .N...