Skip to content

Instantly share code, notes, and snippets.

@dkudelko
Last active August 29, 2015 14:21
Show Gist options
  • Save dkudelko/4b6a8fccae9bc7f5bc0f to your computer and use it in GitHub Desktop.
Save dkudelko/4b6a8fccae9bc7f5bc0f to your computer and use it in GitHub Desktop.
ToNSString() extension xamarin ios
#if __IOS__
public static Foundation.NSString ToNSString (this object source)
{
if (source == null) { //todo логирование
throw new ArgumentNullException ("ToNSString source is null");
}
return new Foundation.NSString (source.ToString ());
}
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment