﻿		#region Method #{MethodName}

		[DllImport(DllName.m_dllName, CallingConvention = CallingConvention.Cdecl)]
        #{ReturnValueMarshalAs}
		private static extern #{ReturnTypeName} Export#{ThisName}_#{MethodName}_#{ValueName1}(IntPtr _native,
			#{ValueMarshalAs1}#{ValueTypePrefix1}#{ValueTypeName1} #{ValueName1});

		public #{TypeName} #{MethodName}(
			#{TypeName1} #{ValueName1})
		{
			return #{ReturnConvertBefore}Export#{ThisName}_#{MethodName}_#{ValueName1}(Native,
				#{ConvertBefore1}#{ValueTypePrefix1}#{ValueName1}#{ConvertPost1})#{ReturnConvertPost};
		}

		#endregion
