Created
April 5, 2013 14:59
-
-
Save johnkors/5319953 to your computer and use it in GitHub Desktop.
Eksempel på bruk av eksternt assembly via scriptingstyle cshart: csx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#r "Faggruppe.MyBusiness.dll" | |
using System; | |
using Faggruppe.MyBusiness; | |
var person = new Person(); | |
for(int i =1; i < 6; i++) | |
{ | |
var person = new Person(); | |
var spoken = person.Speak(); | |
Console.WriteLine(spoken); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment