Skip to content

Instantly share code, notes, and snippets.

@lowenthal-jason
Created December 16, 2015 16:20
Show Gist options
  • Save lowenthal-jason/80781f87309bdabc644b to your computer and use it in GitHub Desktop.
Save lowenthal-jason/80781f87309bdabc644b to your computer and use it in GitHub Desktop.
Example domain class written in C# for Multilingual Programming post on Simple Programmer
public class StarfleetCadet
{
private bool KlingonSpeaker;
public bool IsKlingonSpeaker(){
return this.klingonSpeaker;
}
public void SetKlingonSpeaker(bool klingonSpeakerIn){
this.klingonSpeaker = klingonSpeakerIn;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment