country.cs
来自「破解的飞信源代码」· CS 代码 · 共 112 行
CS
112 行
namespace Imps.Client.Resource
{
using System;
using System.Collections;
using System.Collections.Generic;
using System.Reflection;
using System.Runtime.InteropServices;
public class Country : IDictionary<string, string>, ICollection<KeyValuePair<string, string>>, IEnumerable<KeyValuePair<string, string>>, IEnumerable
{
public void Add(KeyValuePair<string, string> item)
{
throw new Exception("The method or operation is not implemented.");
}
public void Add(string key, string value)
{
throw new Exception("The method or operation is not implemented.");
}
public void Clear()
{
throw new Exception("The method or operation is not implemented.");
}
public bool Contains(KeyValuePair<string, string> item)
{
throw new Exception("The method or operation is not implemented.");
}
public bool ContainsKey(string key)
{
throw new Exception("The method or operation is not implemented.");
}
public void CopyTo(KeyValuePair<string, string>[] array, int arrayIndex)
{
throw new Exception("The method or operation is not implemented.");
}
public IEnumerator<KeyValuePair<string, string>> GetEnumerator()
{
throw new Exception("The method or operation is not implemented.");
}
public bool Remove(KeyValuePair<string, string> item)
{
throw new Exception("The method or operation is not implemented.");
}
public bool Remove(string key)
{
throw new Exception("The method or operation is not implemented.");
}
IEnumerator IEnumerable.GetEnumerator()
{
throw new Exception("The method or operation is not implemented.");
}
public bool TryGetValue(string key, out string value)
{
throw new Exception("The method or operation is not implemented.");
}
public int Count
{
get
{
throw new Exception("The method or operation is not implemented.");
}
}
public bool IsReadOnly
{
get
{
throw new Exception("The method or operation is not implemented.");
}
}
public string this[string key]
{
get
{
throw new Exception("The method or operation is not implemented.");
}
set
{
throw new Exception("The method or operation is not implemented.");
}
}
public ICollection<string> Keys
{
get
{
throw new Exception("The method or operation is not implemented.");
}
}
public ICollection<string> Values
{
get
{
throw new Exception("The method or operation is not implemented.");
}
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?