Friend.Update C# (CSharp) Method

Update() public method

public Update ( ) : void
return void
	void Update () {
		IntVisitCount = VisitFriend.IntParseFast (VisitCount.text);
//		AlbumUpdate ();
	}

Usage Example

Example #1
0
        public void Test_Update_ShouldNotThrowException_WhenAddressIsNull()
        {
            var friend    = new Friend("Helder", "*****@*****.**", "0112999842425", _address, _user);
            var exception = Record.Exception(() => friend.Update("NewName", "*****@*****.**", "0212799777799", null, _photoUploadResult));

            Assert.Null(exception);
        }
All Usage Examples Of Friend::Update