32 lines
665 B
C#
32 lines
665 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
using Android.App;
|
|||
|
using Android.Content;
|
|||
|
using Android.OS;
|
|||
|
using Android.Runtime;
|
|||
|
using Android.Views;
|
|||
|
using Android.Widget;
|
|||
|
using Android.Support.V4.View;
|
|||
|
using Java.Lang;
|
|||
|
|
|||
|
namespace OrarendAndroidApp
|
|||
|
{
|
|||
|
public class ÓraPagerAdapter : PagerAdapter
|
|||
|
{
|
|||
|
public override int Count
|
|||
|
{
|
|||
|
get
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
public override bool IsViewFromObject(View view, Java.Lang.Object objectValue)
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|