Skip to content

Instantly share code, notes, and snippets.

@syaifulnizamyahya
Created November 15, 2016 12:50
Show Gist options
  • Select an option

  • Save syaifulnizamyahya/72bb9b5cdaf886c49233c339ffd2dd75 to your computer and use it in GitHub Desktop.

Select an option

Save syaifulnizamyahya/72bb9b5cdaf886c49233c339ffd2dd75 to your computer and use it in GitHub Desktop.
The name 'Set' does not exist in the current context
using PropertyChanged;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
using Template10.Mvvm;
using Template10.Services.NavigationService;
using Template10.Utils;
using Windows.UI;
using Windows.UI.Xaml.Media;
using Windows.UI.Xaml.Navigation;
namespace Models
{
[ImplementPropertyChanged]
public class WiFiAccessPoint
{
string _SSID = default(string);
public string SSID { get { return _SSID; } set { Set(ref _SSID, value); } }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment