📄 country.cs
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -