| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 372 人关注过本帖
标题:分享一些题看看大家能不能作出来
只看楼主 加入收藏
wxyljp
Rank: 1
等 级:新手上路
帖 子:8
专家分:0
注 册:2007-3-23
收藏
 问题点数:0 回复次数:0 
分享一些题看看大家能不能作出来

3. What’s the different between ANSI and UNICODE, in Wind32 SDK which function can transform an ANSI string to UNICODE string? (5 ‘) string

4. Please write a function to get a folder size, and return it. (‘ 9)
DWORD GetFolderSize ( LPTSTR lpFolderPath ) (9 ‘);

5. What wrong with this section codes? (2 ‘)
using System;
class A
{
public virtual void F ( )
{
Console.WriteLine ( "A.F" );
}
}

abstract class B:A
{
public abstract override void F ( );
}

6. Which of these string definitions will prevent escape ‘\’ in C#?(2 ‘)(AC)
A. string s = #”n Test string”;
B. string s = “’n Test string”;
C. string s = @”n Test string”;
D. string s = “n Test string”;
7. Please write a program using C# to create a mini-image of a jpg file. (6 ‘)
/// <summary>
/// create a Mini-image.
/// </summary>
/// <param name="strSourceFileName">Source File Name (*.bmp / *. Jpg / *.gif)</param>
/// <param name="strDesFileName">target file name(*.jpg)</param>
/// <param name="intWidth">the width target image </param>
/// <param name="intHeight"> the height target image </param>
public static void MiniImage (
string strSourceFileName,
string strDesFileName,
int intWidth,
int intHeight)
{
// answer:
}

搜索更多相关主题的帖子: 分享 
2007-03-23 21:14
快速回复:分享一些题看看大家能不能作出来
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.013741 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved